diff options
author | Vadim Kochan <vadim4j@gmail.com> | 2016-08-23 00:06:03 +0300 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2016-09-15 18:28:28 +0200 |
commit | 9ec74c8eb4d44510827140446a9b155cb8a61690 (patch) | |
tree | 0f939b2fc69d9b396cfa5052922c36f3d3852d29 /ui.c | |
parent | e18c0f2a23fc9e62a5be13af270cb81326ee6550 (diff) |
ui: Rename ui_table_row_print -> ui_table_row_col_set
Really ui_table_row_print(x) no more prints anything, it
just sets column value in a row.
Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'ui.c')
-rw-r--r-- | ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -170,7 +170,7 @@ static void __ui_table_row_print(struct ui_table *tbl, struct ui_col *col, ui_text_attr_insert(tbl->row, col->pos + col->len, color, tmp); } -void ui_table_row_print(struct ui_table *tbl, uint32_t col_id, const char *str) +void ui_table_row_col_set(struct ui_table *tbl, uint32_t col_id, const char *str) { struct ui_col *col = ui_table_col_get(tbl, col_id); |