1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-09 11:13:12 +02:00

Use string instead of char for prefixes in nicklist

This commit is contained in:
Sebastien Helleu
2009-02-17 19:23:16 +01:00
parent eaf3319ed3
commit b5f27d3fea
13 changed files with 87 additions and 98 deletions
+2 -2
View File
@@ -7796,7 +7796,7 @@ struct t_gui_nick_group *weechat_nicklist_add_nick (
struct t_gui_nick_group *group,
const char *name,
const char *color,
char prefix,
const char *prefix,
const char *prefix_color,
int visible);
</programlisting>
@@ -7860,7 +7860,7 @@ struct t_gui_nick *my_nick =
weechat_nicklist_add_nick (my_buffer, my_group,
"test_nick",
(nick_away) ? "weechat.color.nicklist_away" : "bar_fg",
'@', "lightgreen",
"@", "lightgreen",
1);
</screen>
</para>