]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/app.h
Use correct reload flags on all platforms to avoid compilation errors
[wxWidgets.git] / include / wx / app.h
index 89df53f419f45cc324083da16e95eae2aa3a9075..0ea4a57464a97153b323b2c823723abada2dcc24 100644 (file)
@@ -497,7 +497,7 @@ protected:
     wxDECLARE_NO_COPY_CLASS(wxAppConsoleBase);
 };
 
-#if defined(__UNIX__)
+#if defined(__UNIX__) && !defined(__CYGWIN__)
     #include "wx/unix/app.h"
 #else
     // this has to be a class and not a typedef as we forward declare it
@@ -562,10 +562,6 @@ public:
         // it should return true if more idle events are needed, false if not
     virtual bool ProcessIdle();
 
-        // Send idle event to window and all subwindows
-        // Returns true if more idle time is requested.
-    virtual bool SendIdleEvents(wxWindow* win, wxIdleEvent& event);
-
         // override base class version: GUI apps always use an event loop
     virtual bool UsesEventLoop() const { return true; }