// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "frame.h"
#endif
+#include "wx/wxprec.h"
+
#include "wx/frame.h"
#include "wx/statusbr.h"
#include "wx/toolbar.h"
#endif // wxUSE_TOOLBAR
}
+bool wxFrame::MacIsChildOfClientArea( const wxWindow* child ) const
+{
+#if wxUSE_STATUSBAR
+ if ( child == GetStatusBar() )
+ return false ;
+#endif // wxUSE_STATUSBAR
+
+#if wxUSE_TOOLBAR
+ if ( child == GetToolBar() )
+ return false ;
+#endif // wxUSE_TOOLBAR
+
+ return wxFrameBase::MacIsChildOfClientArea( child ) ;
+}
+
void wxFrame::DoSetClientSize(int clientwidth, int clientheight)
{
int currentclientwidth , currentclientheight ;