]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/app.h
Fix wxPropertyGrid::GetPropertyRect when the last item is collapsed.
[wxWidgets.git] / include / wx / cocoa / app.h
index a0a65f94272bc5977d86ee4a2e3293ddf665c377..dffb0cae63b0e57ff9ba39bd3711079e7c831c76 100644 (file)
@@ -1,10 +1,9 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        cocoa/app.h
+// Name:        wx/cocoa/app.h
 // Purpose:     wxApp class
 // Author:      David Elliott
 // Modified by:
 // Created:     2002/11/27
-// RCS-ID:      $Id$
 // Copyright:   (c) 2002 David Elliott
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -67,17 +66,8 @@ public:
     virtual bool OnInit();
     virtual bool OnInitGui();
 
-#ifdef __WXDEBUG__
-    virtual void OnAssert(const wxChar *file, int line, const wxChar *cond, const wxChar *msg);
-    bool IsInAssert() const { return m_isInAssert; }
-#endif // __WXDEBUG__
-
     // Set true _before_ initializing wx to force embedded mode (no app delegate, etc.)
     static bool sm_isEmbedded;
-private:
-#ifdef __WXDEBUG__
-    bool m_isInAssert;
-#endif // __WXDEBUG__
 };
 
 #endif // _WX_COCOA_APP_H_