]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/app.h
Fixed constants of the new wxPG_EX styles
[wxWidgets.git] / include / wx / gtk / app.h
index 87a2ff8c437e26157ed1fd2289293fcc0fd8cd64..0ded824a5fb870e941a4badaf42fab662c5b2754 100644 (file)
@@ -45,13 +45,11 @@ public:
     virtual bool Initialize(int& argc, wxChar **argv);
     virtual void CleanUp();
 
-#ifdef __WXDEBUG__
     virtual void OnAssertFailure(const wxChar *file,
                                  int line,
                                  const wxChar *func,
                                  const wxChar *cond,
                                  const wxChar *msg);
-#endif // __WXDEBUG__
 
     // GTK-specific methods
     // -------------------
@@ -78,15 +76,10 @@ public:
     bool EventsPending();
     bool DoIdle();
 
-protected:
-
-    virtual bool DoYield(bool onlyIfNeeded, long eventsToProcess);
-
 private:
     // true if we're inside an assert modal dialog
-#ifdef __WXDEBUG__
     bool m_isInAssert;
-#endif // __WXDEBUG__
+
 #if wxUSE_THREADS
     wxMutex* m_idleMutex;
 #endif