+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);
+ }
+#endif // wxUSE_THREADS
+
+ gtk_set_locale();
+
+ // We should have the wxUSE_WCHAR_T test on the _outside_
+#if wxUSE_WCHAR_T
+ #if defined(__WXGTK20__)
+ // gtk+ 2.0 supports Unicode through UTF-8 strings
+ wxConvCurrent = &wxConvUTF8;
+ #else // GTK 1.x
+ if (!wxOKlibc())
+ wxConvCurrent = &wxConvLocal;
+ #endif
+#else // !wxUSE_WCHAR_T
+ if (!wxOKlibc())
+ wxConvCurrent = (wxMBConv*) NULL;
+#endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
+
+#if wxUSE_UNICODE
+ // gtk_init() wants UTF-8, not wchar_t, so convert
+ int i;
+ char **argvGTK = new char *[argc + 1];
+ for ( i = 0; i < argc; i++ )
+ {
+ argvGTK[i] = wxStrdupA(wxConvUTF8.cWX2MB(argv[i]));
+ }