X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d1017acfc30c5ee208535c2e84735d17d26b5010..d6fb86a81c099a49304eebefd14c1f416aac21ca:/src/univ/framuniv.cpp diff --git a/src/univ/framuniv.cpp b/src/univ/framuniv.cpp index 9e97296700..d4c06aa36b 100644 --- a/src/univ/framuniv.cpp +++ b/src/univ/framuniv.cpp @@ -96,19 +96,21 @@ void wxFrame::PositionMenuBar() // the menubar is positioned above the client size, hence the negative // y coord wxCoord heightMbar = m_frameMenuBar->GetSize().y; - + wxCoord heightTbar = 0; - // In between sits the toolbar - if (m_frameToolBar) + +#if wxUSE_TOOLBAR + if ( m_frameToolBar ) heightTbar = m_frameToolBar->GetSize().y; +#endif // wxUSE_TOOLBAR - m_frameMenuBar->SetSize(0, + m_frameMenuBar->SetSize(0, #ifdef __WXPM__ // FIXME -- remove this, make wxOS2/Univ behave as // the rest of the world!!! - GetClientSize().y - heightMbar, + GetClientSize().y - heightMbar - heightTbar, #else - - heightMbar - heightTbar, -#endif + - (heightMbar + heightTbar), +#endif GetClientSize().x, heightMbar); } } @@ -196,8 +198,7 @@ wxPoint wxFrame::GetClientAreaOrigin() const } #endif // wxUSE_MENUS - // This is done in wxFrameBase already -#if 0 // wxUSE_TOOLBAR +#if wxUSE_TOOLBAR if ( m_frameToolBar ) { if ( m_frameToolBar->GetWindowStyleFlag() & wxTB_VERTICAL ) @@ -306,7 +307,7 @@ int wxFrame::GetMinHeight() const height += m_frameStatusBar->GetSize().y; } #endif // wxUSE_STATUSBAR - + if ( height ) return height + wxMax(0, wxFrameBase::GetMinHeight()); else