]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/app.h
fixed setfocus() flicker in listctrl
[wxWidgets.git] / include / wx / app.h
index cad0b662644015d65f531f19d906c6d5ccd94030..2ce1cad8bf8e2f86e4d73f096d4a503db0ab200d 100644 (file)
@@ -310,10 +310,8 @@ extern void WXDLLEXPORT wxExit();
 // Yield to other apps/messages
 extern bool WXDLLEXPORT wxYield();
 
-#ifdef __WXGTK__
 // Yield to other apps/messages
 extern void WXDLLEXPORT wxWakeUpIdle();
-#endif
 
 // Post a message to the given eventhandler which will be processed during the
 // next event loop iteration
@@ -361,7 +359,7 @@ public:
 // be in your main program (e.g. hello.cpp). Now IMPLEMENT_APP should add this
 // code if required.
 
-#if defined(__AIX__) || defined(__HPUX__) || defined( __VMS__ )
+#if defined(__AIX__) || defined(__HPUX__) || defined( __VMS__ ) || defined(__WXPM__)
     #define IMPLEMENT_WXWIN_MAIN \
         extern int wxEntry( int argc, char *argv[] ); \
         int main(int argc, char *argv[]) { return wxEntry(argc, argv); }