]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/app.cpp
fixing Clipboard::IsSupported when asking for unicode text and only non-unicode text...
[wxWidgets.git] / src / gtk / app.cpp
index d78da2d0aafafb9f8f5ee2f74c6f0dac027f5a88..8f8e0869dc0b8d42bf36254580b6b2cb67d11c2c 100644 (file)
@@ -555,18 +555,8 @@ bool wxApp::Initialize(int& argc, wxChar **argv)
     bool init_result;
 
 #if wxUSE_THREADS
-    // GTK 1.2 up to version 1.2.3 has broken threads
-    if ((gtk_major_version == 1) &&
-        (gtk_minor_version == 2) &&
-        (gtk_micro_version < 4))
-    {
-        printf( "wxWidgets warning: GUI threading disabled due to outdated GTK version\n" );
-    }
-    else
-    {
-        if (!g_thread_supported())
-            g_thread_init(NULL);
-    }
+    if (!g_thread_supported())
+        g_thread_init(NULL);
 #endif // wxUSE_THREADS
 
     gtk_set_locale();