diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-30 07:40:37 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-30 07:40:37 +0100 |
commit | 45d4fa580114e7379a1140fb9944d43ffb9522ae (patch) | |
tree | b3ef37a2d374be07c365babe6ab6521c2d964be7 /plugins/upd/upd.c | |
parent | a5ab455b3414226ef03869eab9e7eeb01142a916 (diff) |
Rebranding for XCHAT_EAT_*
Diffstat (limited to 'plugins/upd/upd.c')
-rw-r--r-- | plugins/upd/upd.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/upd/upd.c b/plugins/upd/upd.c index 60e869cd..e0782ec0 100644 --- a/plugins/upd/upd.c +++ b/plugins/upd/upd.c @@ -163,14 +163,14 @@ print_version (char *word[], char *word_eol[], void *userdata) if (!g_ascii_strcasecmp ("HELP", word[2])) { xchat_printf (ph, upd_help); - return XCHAT_EAT_XCHAT; + return HEXCHAT_EAT_XCHAT; } else if (!g_ascii_strcasecmp ("SET", word[2])) { if (!g_ascii_strcasecmp ("", word_eol[4])) { xchat_printf (ph, "%s\tEnter a value!\n", name); - return XCHAT_EAT_XCHAT; + return HEXCHAT_EAT_XCHAT; } if (!g_ascii_strcasecmp ("delay", word[3])) { @@ -205,10 +205,10 @@ print_version (char *word[], char *word_eol[], void *userdata) else { xchat_printf (ph, "%s\tInvalid variable name! Use 'delay' or 'freq'!\n", name); - return XCHAT_EAT_XCHAT; + return HEXCHAT_EAT_XCHAT; } - return XCHAT_EAT_XCHAT; + return HEXCHAT_EAT_XCHAT; } else if (!g_ascii_strcasecmp ("", word[2])) { @@ -230,12 +230,12 @@ print_version (char *word[], char *word_eol[], void *userdata) xchat_printf (ph, "%s\tA HexChat update is available! You can download it from here:\nhttps://github.com/downloads/hexchat/hexchat/HexChat%%20%s%%20x86.exe\n", name, version); #endif } - return XCHAT_EAT_XCHAT; + return HEXCHAT_EAT_XCHAT; } else { xchat_printf (ph, upd_help); - return XCHAT_EAT_XCHAT; + return HEXCHAT_EAT_XCHAT; } } |