X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/92f1a59c288e0e181d2998a93220a73b89f675df..fb761cd53ccedec382b88e4f9c92dcae3fcdf1ea:/src/common/framecmn.cpp?ds=sidebyside diff --git a/src/common/framecmn.cpp b/src/common/framecmn.cpp index e4456b0da6..87c94e3fe3 100644 --- a/src/common/framecmn.cpp +++ b/src/common/framecmn.cpp @@ -16,7 +16,7 @@ // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "framebase.h" #endif @@ -151,7 +151,7 @@ wxPoint wxFrameBase::GetClientAreaOrigin() const { wxPoint pt = wxTopLevelWindow::GetClientAreaOrigin(); -#if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) +#if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__) wxToolBar *toolbar = GetToolBar(); if ( toolbar && toolbar->IsShown() ) { @@ -250,6 +250,8 @@ void wxFrameBase::OnMenuHighlight(wxMenuEvent& event) // Implement internal behaviour (menu updating on some platforms) void wxFrameBase::OnInternalIdle() { + wxTopLevelWindow::OnInternalIdle(); + #if wxUSE_MENUS && wxUSE_IDLEMENUUPDATES if (wxUpdateUIEvent::CanUpdate(this)) DoMenuUpdates();