diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-30 08:58:50 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-30 08:58:50 +0100 |
commit | 8d6f4d9d40c68f3174cbe94f7107dea74d00d5fc (patch) | |
tree | 5c2cdf86338b10b5d4202491a03d84f5ae4126e5 /src/common/hexchat-plugin.h | |
parent | e681eafa78262d0c177832d67900687f2c938081 (diff) |
Some remaining fixes
Diffstat (limited to 'src/common/hexchat-plugin.h')
-rw-r--r-- | src/common/hexchat-plugin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/hexchat-plugin.h b/src/common/hexchat-plugin.h index f0b76ad6..bc2e5ed9 100644 --- a/src/common/hexchat-plugin.h +++ b/src/common/hexchat-plugin.h @@ -81,7 +81,7 @@ struct _hexchat_plugin hexchat_context *(*hexchat_get_context) (hexchat_plugin *ph); const char *(*hexchat_get_info) (hexchat_plugin *ph, const char *id); - int (*xchat_get_prefs) (hexchat_plugin *ph, + int (*hexchat_get_prefs) (hexchat_plugin *ph, const char *name, const char **string, int *integer); @@ -226,7 +226,7 @@ hexchat_get_info (hexchat_plugin *ph, const char *id); int -xchat_get_prefs (hexchat_plugin *ph, +hexchat_get_prefs (hexchat_plugin *ph, const char *name, const char **string, int *integer); @@ -345,7 +345,7 @@ hexchat_pluginpref_list (hexchat_plugin *ph, #define hexchat_find_context ((HEXCHAT_PLUGIN_HANDLE)->hexchat_find_context) #define hexchat_get_context ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_context) #define hexchat_get_info ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_info) -#define xchat_get_prefs ((HEXCHAT_PLUGIN_HANDLE)->xchat_get_prefs) +#define hexchat_get_prefs ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_prefs) #define hexchat_list_get ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_get) #define hexchat_list_free ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_free) #define hexchat_list_fields ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_fields) |