{
wxPoint pt = wxTopLevelWindow::GetClientAreaOrigin();
-#if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__) && \
- (!defined(__WXWINCE__) || (_WIN32_WCE >= 400 && !defined(WIN32_PLATFORM_PSPC) && !defined(WIN32_PLATFORM_WFSP)))
+#if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__)
wxToolBar *toolbar = GetToolBar();
if ( toolbar && toolbar->IsShown() )
{
}
#endif // wxUSE_TOOLBAR
-#if defined(__WXWINCE__) && defined(WCE_PLATFORM_STANDARDSDK)
- if (GetMenuBar() && GetMenuBar()->GetCommandBar())
- {
- RECT rect;
- ::GetWindowRect((HWND) GetMenuBar()->GetCommandBar(), &rect);
- pt.y += (rect.bottom - rect.top);
- }
-#endif
-
return pt;
}
void wxFrameBase::UpdateWindowUI(long flags)
{
wxWindowBase::UpdateWindowUI(flags);
-
+
#if wxUSE_TOOLBAR
if (GetToolBar())
GetToolBar()->UpdateWindowUI(flags);
void wxFrameBase::OnInternalIdle()
{
wxTopLevelWindow::OnInternalIdle();
-
+
#if wxUSE_MENUS && wxUSE_IDLEMENUUPDATES
if (wxUpdateUIEvent::CanUpdate(this))
DoMenuUpdates();
}
statbar->SetStatusText(help, m_statusBarPane);
+#else
+ wxUnusedVar(text);
+ wxUnusedVar(show);
#endif // wxUSE_STATUSBAR
}