diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-30 07:18:25 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-30 07:18:25 +0100 |
commit | 91dd079add901b219d0193c686f8232bc57965c9 (patch) | |
tree | 1a2c8081c24071b869fa81161872537fd9dda2c9 /plugins/xdcc/xdcc.c | |
parent | 50a233527687ed9c8c747a0c692fe477ae00483d (diff) |
Rebranding for XCHAT_PRI_*
Diffstat (limited to 'plugins/xdcc/xdcc.c')
-rw-r--r-- | plugins/xdcc/xdcc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/xdcc/xdcc.c b/plugins/xdcc/xdcc.c index 9233f12b..d26eb43b 100644 --- a/plugins/xdcc/xdcc.c +++ b/plugins/xdcc/xdcc.c @@ -320,9 +320,9 @@ int xchat_plugin_init(xchat_plugin *plugin_handle, *plugin_desc = "Very simple XDCC server"; *plugin_version = "0.1"; - xchat_hook_command(ph, "XDCC", XCHAT_PRI_NORM, xdcc_command, 0, 0); - xchat_hook_print(ph, "CTCP Generic", XCHAT_PRI_NORM, ctcp_cb, 0); - xchat_hook_print(ph, "CTCP Generic to Channel", XCHAT_PRI_NORM, ctcp_cb, 0); + xchat_hook_command(ph, "XDCC", HEXCHAT_PRI_NORM, xdcc_command, 0, 0); + xchat_hook_print(ph, "CTCP Generic", HEXCHAT_PRI_NORM, ctcp_cb, 0); + xchat_hook_print(ph, "CTCP Generic to Channel", HEXCHAT_PRI_NORM, ctcp_cb, 0); xdcc_load(); xchat_print(ph, "XDCC loaded. Type /XDCC for help.\n"); |