1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-10 19:53:13 +02:00

api: rename function unhook_all_plugin to unhook_all

This commit is contained in:
Sébastien Helleu
2016-03-24 09:17:54 +01:00
parent 293f758a3a
commit 5244a707cb
10 changed files with 14 additions and 14 deletions
+5 -5
View File
@@ -57,7 +57,7 @@ struct timeval;
* please change the date with current one; for a second change at same
* date, increment the 01, otherwise please keep 01.
*/
#define WEECHAT_PLUGIN_API_VERSION "20160321-01"
#define WEECHAT_PLUGIN_API_VERSION "20160324-01"
/* macros for defining plugin infos */
#define WEECHAT_PLUGIN_NAME(__name) \
@@ -785,8 +785,8 @@ struct t_weechat_plugin
void (*hook_set) (struct t_hook *hook, const char *property,
const char *value);
void (*unhook) (struct t_hook *hook);
void (*unhook_all_plugin) (struct t_weechat_plugin *plugin,
const char *subplugin);
void (*unhook_all) (struct t_weechat_plugin *plugin,
const char *subplugin);
/* buffers */
struct t_gui_buffer *(*buffer_new) (struct t_weechat_plugin *plugin,
@@ -1632,8 +1632,8 @@ extern int weechat_plugin_end (struct t_weechat_plugin *plugin);
(weechat_plugin->hook_set)(__hook, __property, __value)
#define weechat_unhook(__hook) \
(weechat_plugin->unhook)( __hook)
#define weechat_unhook_all_plugin(__subplugin) \
(weechat_plugin->unhook_all_plugin)(weechat_plugin, __subplugin)
#define weechat_unhook_all(__subplugin) \
(weechat_plugin->unhook_all)(weechat_plugin, __subplugin)
/* buffers */
#define weechat_buffer_new(__name, __input_callback, \