]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/app.cpp
Changed default cursor to be an arrow rather than the ugly X.
[wxWidgets.git] / src / gtk / app.cpp
index 1af816532741f3dd53775dfd52c12eb9f196a681..2b96d6903305581d984629f02b4dbcc10959026d 100644 (file)
@@ -44,6 +44,8 @@
 // global data
 //-----------------------------------------------------------------------------
 
+extern wxCursor g_globalCursor;
+
 wxApp *wxTheApp = (wxApp *)  NULL;
 wxAppInitializerFunction wxApp::m_appInitFn = (wxAppInitializerFunction) NULL;
 
@@ -575,8 +577,7 @@ bool wxApp::Initialize()
 
     wxImage::InitStandardHandlers();
 
-    /* no global cursor under X
-       g_globalCursor = new wxCursor; */
+    g_globalCursor = wxCursor(wxCURSOR_DEFAULT);
 
     wxModule::RegisterModules();
     if (!wxModule::InitializeModules()) return FALSE;
@@ -662,6 +663,8 @@ int wxEntry( int argc, char *argv[] )
 {
     gtk_set_locale();
 
+    if (!wxOKlibc()) wxConvCurrent = &wxConvLocal;
+
     gtk_init( &argc, &argv );
 
     wxSetDetectableAutoRepeat( TRUE );