]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/utils.cpp
don't set cursor for not realized (and not only hidden) windows
[wxWidgets.git] / src / os2 / utils.cpp
index b963638d6d06de8e4a348da652576fef77c01e60..66db9ff3f3966d53cf19b472169a024384f717df 100644 (file)
@@ -15,7 +15,6 @@
 #include "wx/utils.h"
 
 #ifndef WX_PRECOMP
-    #include "wx/app.h"
     #include "wx/intl.h"
     #include "wx/log.h"
 #endif  //WX_PRECOMP
@@ -318,6 +317,13 @@ wxString wxGetOsDescription()
     return strVer;
 }
 
+bool wxIsPlatform64Bit()
+{
+    // FIXME: No idea how to test for 64 bit processor
+    //        (Probably irrelevant anyhow, though).
+    return false;
+}
+
 void wxAppTraits::InitializeGui(unsigned long &WXUNUSED(ulHab))
 {
 }
@@ -328,7 +334,6 @@ void wxAppTraits::TerminateGui(unsigned long WXUNUSED(ulHab))
 
 wxOperatingSystemId wxGetOsVersion(int *verMaj, int *verMin)
 {
-    static wxToolkitInfo  vInfo;
     ULONG                 ulSysInfo[QSV_MAX] = {0};
     APIRET                ulrc;