diff options
-rw-r--r-- | doc/de/autogen/plugin_api/hdata.txt | 6 | ||||
-rw-r--r-- | doc/en/autogen/plugin_api/hdata.txt | 6 | ||||
-rw-r--r-- | doc/fr/autogen/plugin_api/hdata.txt | 6 | ||||
-rw-r--r-- | doc/it/autogen/plugin_api/hdata.txt | 6 | ||||
-rw-r--r-- | src/gui/gui-line.c | 6 |
5 files changed, 15 insertions, 15 deletions
diff --git a/doc/de/autogen/plugin_api/hdata.txt b/doc/de/autogen/plugin_api/hdata.txt index 903d5ed78..a00b9ecc6 100644 --- a/doc/de/autogen/plugin_api/hdata.txt +++ b/doc/de/autogen/plugin_api/hdata.txt @@ -445,9 +445,9 @@ 'str_time' (string) + 'tags_count' (integer) + 'tags_array' (pointer) + - 'displayed' (integer) + - 'highlight' (integer) + - 'refresh_needed' (integer) + + 'displayed' (char) + + 'highlight' (char) + + 'refresh_needed' (char) + 'prefix' (string) + 'prefix_length' (integer) + 'message' (string) | diff --git a/doc/en/autogen/plugin_api/hdata.txt b/doc/en/autogen/plugin_api/hdata.txt index 4b2d19acd..641f62a58 100644 --- a/doc/en/autogen/plugin_api/hdata.txt +++ b/doc/en/autogen/plugin_api/hdata.txt @@ -445,9 +445,9 @@ 'str_time' (string) + 'tags_count' (integer) + 'tags_array' (pointer) + - 'displayed' (integer) + - 'highlight' (integer) + - 'refresh_needed' (integer) + + 'displayed' (char) + + 'highlight' (char) + + 'refresh_needed' (char) + 'prefix' (string) + 'prefix_length' (integer) + 'message' (string) | diff --git a/doc/fr/autogen/plugin_api/hdata.txt b/doc/fr/autogen/plugin_api/hdata.txt index e8afb06d2..b995cbc57 100644 --- a/doc/fr/autogen/plugin_api/hdata.txt +++ b/doc/fr/autogen/plugin_api/hdata.txt @@ -445,9 +445,9 @@ 'str_time' (string) + 'tags_count' (integer) + 'tags_array' (pointer) + - 'displayed' (integer) + - 'highlight' (integer) + - 'refresh_needed' (integer) + + 'displayed' (char) + + 'highlight' (char) + + 'refresh_needed' (char) + 'prefix' (string) + 'prefix_length' (integer) + 'message' (string) | diff --git a/doc/it/autogen/plugin_api/hdata.txt b/doc/it/autogen/plugin_api/hdata.txt index 6b3ad6c30..5eab8fa67 100644 --- a/doc/it/autogen/plugin_api/hdata.txt +++ b/doc/it/autogen/plugin_api/hdata.txt @@ -445,9 +445,9 @@ 'str_time' (string) + 'tags_count' (integer) + 'tags_array' (pointer) + - 'displayed' (integer) + - 'highlight' (integer) + - 'refresh_needed' (integer) + + 'displayed' (char) + + 'highlight' (char) + + 'refresh_needed' (char) + 'prefix' (string) + 'prefix_length' (integer) + 'message' (string) | diff --git a/src/gui/gui-line.c b/src/gui/gui-line.c index bff2a2b19..a27aa8bac 100644 --- a/src/gui/gui-line.c +++ b/src/gui/gui-line.c @@ -1237,9 +1237,9 @@ gui_line_hdata_line_data_cb (void *data, const char *hdata_name) HDATA_VAR(struct t_gui_line_data, str_time, STRING, NULL); HDATA_VAR(struct t_gui_line_data, tags_count, INTEGER, NULL); HDATA_VAR(struct t_gui_line_data, tags_array, POINTER, NULL); - HDATA_VAR(struct t_gui_line_data, displayed, INTEGER, NULL); - HDATA_VAR(struct t_gui_line_data, highlight, INTEGER, NULL); - HDATA_VAR(struct t_gui_line_data, refresh_needed, INTEGER, NULL); + HDATA_VAR(struct t_gui_line_data, displayed, CHAR, NULL); + HDATA_VAR(struct t_gui_line_data, highlight, CHAR, NULL); + HDATA_VAR(struct t_gui_line_data, refresh_needed, CHAR, NULL); HDATA_VAR(struct t_gui_line_data, prefix, STRING, NULL); HDATA_VAR(struct t_gui_line_data, prefix_length, INTEGER, NULL); HDATA_VAR(struct t_gui_line_data, message, STRING, NULL); |