summary refs log tree commit diff stats
path: root/plugins
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2010-10-09 12:52:05 +0200
committerberkeviktor@aol.com <berkeviktor@aol.com>2010-10-09 12:52:05 +0200
commitbaf032760bee7d397a51ca8f924ca4125d2c9c49 (patch)
treee17ab8a9acea7ee54e9fbfc4e47f2951b012b0fe /plugins
parent3c21396a4fcfee1a91c9b61b7030832568c66878 (diff)
parent8aec84afd980677284dbb86ed872a2d0d8d9ae59 (diff)
Merge
Diffstat (limited to 'plugins')
-rw-r--r--plugins/upd/upd.c8
-rw-r--r--plugins/xtray/makefile.mak2
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/upd/upd.c b/plugins/upd/upd.c
index 6d5e67ad..1062c6e9 100644
--- a/plugins/upd/upd.c
+++ b/plugins/upd/upd.c
@@ -35,7 +35,7 @@ char*
 check_version ()
 {
 	HINTERNET hINet, hFile;
-	hINet = InternetOpen ("XChat-WDK Update Checker", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
+	hINet = InternetOpen ("Update Checker", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
 	
 	if (!hINet)
 	{
@@ -91,12 +91,12 @@ xchat_plugin_init (xchat_plugin *plugin_handle, char **plugin_name, char **plugi
 {
 	ph = plugin_handle;
 
-	*plugin_name = "XChat-WDK Update Checker";
+	*plugin_name = "Update Checker";
 	*plugin_desc = "Plugin for checking for XChat-WDK updates";
 	*plugin_version = "1.0";
 
 	xchat_hook_command (ph, "UPDCHK", XCHAT_PRI_NORM, print_version, 0, 0);
-	xchat_print (ph, "XChat-WDK Update Checker plugin loaded\n");
+	xchat_print (ph, "Update Checker plugin loaded\n");
 	print_version ();
 
 	return 1;       /* return 1 for success */
@@ -105,6 +105,6 @@ xchat_plugin_init (xchat_plugin *plugin_handle, char **plugin_name, char **plugi
 int
 xchat_plugin_deinit (void)
 {
-	xchat_print (ph, "XChat-WDK Update Checker plugin unloaded\n");
+	xchat_print (ph, "Update Checker plugin unloaded\n");
 	return 1;
 }
diff --git a/plugins/xtray/makefile.mak b/plugins/xtray/makefile.mak
index bb0d07cf..d1f8d295 100644
--- a/plugins/xtray/makefile.mak
+++ b/plugins/xtray/makefile.mak
@@ -23,7 +23,7 @@ xtray.def:
 	$(CC) $(CPPFLAGS) /c $<
 
 res:
-	rc resource.rc
+	rc /nologo resource.rc
 	
 $(TARGET): $(TRAY_OBJECTS) xtray.def res
 	$(LINK) /DLL /out:$(TARGET) $(LDFLAGS) $(TRAY_OBJECTS) ntstc_msvcrt.lib $(LIBS) /def:xtray.def resource.res