From: <dat...@us...> - 2006-08-16 11:14:56
|
Revision: 16788 Author: datallah Date: 2006-08-16 04:13:19 -0700 (Wed, 16 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16788&view=rev Log Message: ----------- gdk_threads_init() is causing problems on win32 for some reason. Modified Paths: -------------- trunk/src/gtkmain.c Modified: trunk/src/gtkmain.c =================================================================== --- trunk/src/gtkmain.c 2006-08-16 07:37:42 UTC (rev 16787) +++ trunk/src/gtkmain.c 2006-08-16 11:13:19 UTC (rev 16788) @@ -650,7 +650,9 @@ * threadify dbus when that gets initialized. Ugh. */ if (!g_thread_supported()) g_thread_init(NULL); +#ifndef _WIN32 gdk_threads_init(); +#endif #endif /* Glib has threads */ gui_check = gtk_init_check(&argc, &argv); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |