summary refs log tree commit diff stats
path: root/src/common/hexchat-plugin.h
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-30 03:55:25 +0100
committerBerke Viktor <bviktor@hexchat.org>2012-10-30 03:55:25 +0100
commitc73c9b4b31c15fe6e6743a53c2a2d1a2d6a10324 (patch)
tree28c2f16a04beb3aa2777f99a5028b0d1d747599d /src/common/hexchat-plugin.h
parent251fe8250ebd15077b15c14e3a5521d8709d8ab9 (diff)
Fix plugin function ordering
Diffstat (limited to 'src/common/hexchat-plugin.h')
-rw-r--r--src/common/hexchat-plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/hexchat-plugin.h b/src/common/hexchat-plugin.h
index 43621f78..40eca898 100644
--- a/src/common/hexchat-plugin.h
+++ b/src/common/hexchat-plugin.h
@@ -356,13 +356,13 @@ xchat_pluginpref_list (xchat_plugin *ph,
 #define xchat_list_get ((XCHAT_PLUGIN_HANDLE)->xchat_list_get)
 #define xchat_list_free ((XCHAT_PLUGIN_HANDLE)->xchat_list_free)
 #define xchat_list_fields ((XCHAT_PLUGIN_HANDLE)->xchat_list_fields)
+#define xchat_list_next ((XCHAT_PLUGIN_HANDLE)->xchat_list_next)
 #define xchat_list_str ((XCHAT_PLUGIN_HANDLE)->xchat_list_str)
 #define xchat_list_int ((XCHAT_PLUGIN_HANDLE)->xchat_list_int)
-#define xchat_list_time ((XCHAT_PLUGIN_HANDLE)->xchat_list_time)
-#define xchat_list_next ((XCHAT_PLUGIN_HANDLE)->xchat_list_next)
 #define xchat_plugingui_add ((XCHAT_PLUGIN_HANDLE)->xchat_plugingui_add)
 #define xchat_plugingui_remove ((XCHAT_PLUGIN_HANDLE)->xchat_plugingui_remove)
 #define xchat_emit_print ((XCHAT_PLUGIN_HANDLE)->xchat_emit_print)
+#define xchat_list_time ((XCHAT_PLUGIN_HANDLE)->xchat_list_time)
 #define xchat_gettext ((XCHAT_PLUGIN_HANDLE)->xchat_gettext)
 #define xchat_send_modes ((XCHAT_PLUGIN_HANDLE)->xchat_send_modes)
 #define xchat_strip ((XCHAT_PLUGIN_HANDLE)->xchat_strip)