diff options
Diffstat (limited to 'plugins/gtkpref/gtkpref.c')
-rw-r--r-- | plugins/gtkpref/gtkpref.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/gtkpref/gtkpref.c b/plugins/gtkpref/gtkpref.c index 18a6d958..3816abcc 100644 --- a/plugins/gtkpref/gtkpref.c +++ b/plugins/gtkpref/gtkpref.c @@ -61,8 +61,6 @@ xchat_plugin_init (xchat_plugin *plugin_handle, char **plugin_name, char **plugi xchat_hook_command (ph, "GTKPREF", XCHAT_PRI_NORM, launch_tool, 0, 0); xchat_command (ph, "MENU -ietc\\gtkpref.png ADD \"Settings/GTK+ Preferences\" \"GTKPREF\""); - xchat_print (ph, "GTKPref plugin loaded\n"); - return 1; /* return 1 for success */ } @@ -70,6 +68,6 @@ int xchat_plugin_deinit (void) { xchat_command (ph, "MENU DEL \"Settings/GTK+ Preferences\""); - xchat_print (ph, "GTKPref plugin unloaded\n"); + return 1; } |