mirror of
https://github.com/weechat/weechat.git
synced 2026-06-12 14:14:48 +02:00
core: fix type of variables in hdata "line_data" (type integer -> char)
This commit is contained in:
@@ -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) |
|
||||
|
||||
@@ -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) |
|
||||
|
||||
@@ -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) |
|
||||
|
||||
@@ -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) |
|
||||
|
||||
+3
-3
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user