diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-08-16 09:15:00 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-08-16 09:15:00 +0200 |
commit | a234bc90ad2384f1efb067bbf7db801f5233c365 (patch) | |
tree | 20fdb562226b6550daf94dd00fb99ebb8e7854b0 /src | |
parent | 8f0e0307c5244c3f6bf43debe3930ec1ca433ce7 (diff) | |
download | weechat-a234bc90ad2384f1efb067bbf7db801f5233c365.zip |
irc: rename host/server/channel to irc_host/irc_server/irc_channel in irc focus hashtable for nicklist
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/irc/irc-bar-item.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/irc/irc-bar-item.c b/src/plugins/irc/irc-bar-item.c index 633db73c8..c354dc9d0 100644 --- a/src/plugins/irc/irc-bar-item.c +++ b/src/plugins/irc/irc-bar-item.c @@ -529,11 +529,11 @@ irc_bar_item_focus_buffer_nicklist (void *data, ptr_nick = irc_nick_search (ptr_channel, nick); if (ptr_nick && ptr_nick->host) { - weechat_hashtable_set (info, "host", ptr_nick->host); + weechat_hashtable_set (info, "irc_host", ptr_nick->host); } } - weechat_hashtable_set (info, "server", ptr_server->name); - weechat_hashtable_set (info, "channel", ptr_channel->name); + weechat_hashtable_set (info, "irc_server", ptr_server->name); + weechat_hashtable_set (info, "irc_channel", ptr_channel->name); return info; } |