diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-12-19 22:39:24 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-12-19 22:39:24 +0100 |
commit | 6f3fd239be85096cdc6d47f8f3351a155d10629c (patch) | |
tree | 46ec884432b1a9f54378ae3135e15813fd75b635 /src/gui | |
parent | 7d52f85f55273ccbd869b6271ba782db5d7682ff (diff) | |
download | weechat-6f3fd239be85096cdc6d47f8f3351a155d10629c.zip |
core: add type "hashtable" for hdata, new api functions: hdata_hashtable and hashtable_map_string
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/gui-buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui-buffer.c b/src/gui/gui-buffer.c index 72c10c71b..023667b60 100644 --- a/src/gui/gui-buffer.c +++ b/src/gui/gui-buffer.c @@ -3140,11 +3140,11 @@ gui_buffer_hdata_buffer_cb (void *data, const char *hdata_name) HDATA_VAR(struct t_gui_buffer, highlight_tags, STRING, NULL); HDATA_VAR(struct t_gui_buffer, highlight_tags_count, INTEGER, NULL); HDATA_VAR(struct t_gui_buffer, highlight_tags_array, POINTER, NULL); - HDATA_VAR(struct t_gui_buffer, hotlist_max_level_nicks, POINTER, NULL); + HDATA_VAR(struct t_gui_buffer, hotlist_max_level_nicks, HASHTABLE, NULL); HDATA_VAR(struct t_gui_buffer, keys, POINTER, "key"); HDATA_VAR(struct t_gui_buffer, last_key, POINTER, "key"); HDATA_VAR(struct t_gui_buffer, keys_count, INTEGER, NULL); - HDATA_VAR(struct t_gui_buffer, local_variables, POINTER, NULL); + HDATA_VAR(struct t_gui_buffer, local_variables, HASHTABLE, NULL); HDATA_VAR(struct t_gui_buffer, prev_buffer, POINTER, hdata_name); HDATA_VAR(struct t_gui_buffer, next_buffer, POINTER, hdata_name); HDATA_LIST(gui_buffers); |