// ---------------------------------------------------------------------------
#ifdef __GNUG__
- #pragma implementation "framuniv.h"
+ #pragma implementation "univframe.h"
#endif
// For compilers that support precompilation, includes "wx.h".
{
#if wxUSE_MENUS
PositionMenuBar();
-#endif // wxUSE_WAVE
+#endif // wxUSE_MENUS
event.Skip();
}
GetClientSize().x, -1);
}
}
-
#endif // wxUSE_MENUS
wxPoint wxFrame::GetClientAreaOrigin() const
return pt;
}
+bool wxFrame::Enable( bool enable )
+{
+ if (!wxFrameNative::Enable(enable))
+ return FALSE;
+#ifdef __WXMICROWIN__
+ if (m_frameMenuBar)
+ m_frameMenuBar->Enable(enable);
+#endif
+ return TRUE;
+}