diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-02-09 13:21:05 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-02-09 13:21:05 +0100 |
commit | daee18621e752a1047337acbfd56e3d40d12976f (patch) | |
tree | 0479920b78ed61e3d92f28426847c22f89603747 /src/gui/gui-chat.h | |
parent | 71d77a58903bc39341e8ecdda16f8a607355d6f1 (diff) | |
download | weechat-daee18621e752a1047337acbfd56e3d40d12976f.zip |
Rename command /silence to /mute
Diffstat (limited to 'src/gui/gui-chat.h')
-rw-r--r-- | src/gui/gui-chat.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/gui-chat.h b/src/gui/gui-chat.h index 460b8eb6f..0cc3caaa9 100644 --- a/src/gui/gui-chat.h +++ b/src/gui/gui-chat.h @@ -42,18 +42,18 @@ enum t_gui_chat_prefix GUI_CHAT_NUM_PREFIXES, }; -enum t_gui_chat_silent +enum t_gui_chat_mute { - GUI_CHAT_SILENT_DISABLED = 0, - GUI_CHAT_SILENT_BUFFER, - GUI_CHAT_SILENT_ALL_BUFFERS, + GUI_CHAT_MUTE_DISABLED = 0, + GUI_CHAT_MUTE_BUFFER, + GUI_CHAT_MUTE_ALL_BUFFERS, }; extern char *gui_chat_prefix[GUI_CHAT_NUM_PREFIXES]; extern char gui_chat_prefix_empty[]; extern int gui_chat_time_length; -extern int gui_chat_silent; -extern struct t_gui_buffer *gui_chat_silent_buffer; +extern int gui_chat_mute; +extern struct t_gui_buffer *gui_chat_mute_buffer; /* chat functions */ |