// ctors
// ----------------------------------------------------------------------------
-wxFrame::wxFrame()
-{
-}
-
-wxFrame::wxFrame(wxWindow *parent,
- wxWindowID id,
- const wxString& title,
- const wxPoint& pos,
- const wxSize& size,
- long style,
- const wxString& name)
-{
- Create(parent, id, title, pos, size, style, name);
-}
-
bool wxFrame::Create(wxWindow *parent,
wxWindowID id,
const wxString& title,
#if wxUSE_TOOLBAR
if ( m_frameToolBar )
{
+#if wxUSE_STATUSBAR
height += m_frameStatusBar->GetSize().y;
+#endif // wxUSE_STATUSBAR
if ( m_frameToolBar->GetWindowStyleFlag() & wxTB_VERTICAL )
width += m_frameToolBar->GetSize().x;