summary refs log tree commit diff stats
path: root/plugins
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2010-06-02 21:59:11 +0200
committerberkeviktor@aol.com <berkeviktor@aol.com>2010-06-02 21:59:11 +0200
commit71681c889b63432b7534078a402a7512a172e323 (patch)
treebc72c443d29e41cd3cb4008b380e340e5b52047a /plugins
parent285f004e528c7ae29c664559cdc74e6e9b79d383 (diff)
make plugin messages consistent with perl and tcl interface messages
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dns/plugin-dns.c4
-rw-r--r--plugins/ewc/ewc.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/dns/plugin-dns.c b/plugins/dns/plugin-dns.c
index 44d53691..526c4368 100644
--- a/plugins/dns/plugin-dns.c
+++ b/plugins/dns/plugin-dns.c
@@ -305,7 +305,7 @@ xchat_plugin_deinit (xchat_plugin *plugin_handle)
 		Sleep (1000);
 	}
 	
-	xchat_print(ph, "DNS plugin unloaded successfully!\n");
+	xchat_print(ph, "DNS plugin unloaded\n");
 	return 1;
 }
 
@@ -333,7 +333,7 @@ xchat_plugin_init
 
 	xchat_hook_command(ph, "DNS", XCHAT_PRI_LOW, dns_cmd_cb, HELP, 0);
 
-	xchat_print(ph, "DNS plugin loaded successfully!\n");
+	xchat_print(ph, "DNS plugin loaded\n");
 
 	return 1;       /* return 1 for success */
 }
diff --git a/plugins/ewc/ewc.c b/plugins/ewc/ewc.c
index e28f9673..78e7e9ac 100644
--- a/plugins/ewc/ewc.c
+++ b/plugins/ewc/ewc.c
@@ -219,13 +219,13 @@ int xchat_plugin_init(xchat_plugin *plugin_handle,
   xchat_hook_command(ph, "wcmd", XCHAT_PRI_NORM, wcmd_cb,

                     "Usage: wcmd [play|pause|stop|prev|next]", 0);

 

-  xchat_print(ph, "EasyWinampControl plugin loaded successfully!\n");

+  xchat_print(ph, "EasyWinampControl plugin loaded\n");

 

   return 1;       /* return 1 for success */

 }

 

 int xchat_plugin_deinit(void)

 {

-  xchat_print(ph, "EasyWinampControl plugin unloaded successfully!\n");

+  xchat_print(ph, "EasyWinampControl plugin unloaded\n");

   return 1;

 }