diff src/gaimrc.c @ 4381:af485b4bb8c1

[gaim-migrate @ 4647] win32 fix for buddy win resize bug committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Wed, 22 Jan 2003 00:35:29 +0000
parents 0c68d402f59f
children bca8256a91a6
line wrap: on
line diff
--- a/src/gaimrc.c	Tue Jan 21 22:07:10 2003 +0000
+++ b/src/gaimrc.c	Wed Jan 22 00:35:29 2003 +0000
@@ -1364,7 +1364,10 @@
 {
 	FILE *f;
 	char buf[BUF_LONG];
-	debug_printf("enter save_prefs\n");
+#ifndef _WIN32
+	/* g_print breaks buddy win resizing */
+	debug_printf("enter save_prefs\n");  
+#endif
 	if (is_loading_prefs) {
 		request_save_prefs = 1;
 		debug_printf("currently loading, will request save\n");
@@ -1404,7 +1407,10 @@
 		load_prefs();
 		request_load_prefs = 0;
 	}
+#ifndef _WIN32
+	/* g_print breaks buddy win resizing */
 	debug_printf("exit save_prefs\n");
+#endif
 }