// Modified by: Dimitri Schoolwerth
// Created: 26/10/98
// RCS-ID: $Id$
-// Copyright: (c) 1998-2002 wxWindows team
+// Copyright: (c) 1998-2002 wxWidgets team
// License: wxWindows license
/////////////////////////////////////////////////////////////////////////////
{
wxPanel *panel = new wxPanel(this);
- wxButton *buttonBig = new wxButton( panel, wxID_ANY, wxT("Maximized button"),
- wxPoint(0, 0), wxSize(480, 360) );
+ wxButton *buttonBig = new wxButton(panel, wxID_ANY, wxT("Maximized button"));
wxBoxSizer *sizerPanel = new wxBoxSizer(wxVERTICAL);
sizerPanel->Add(buttonBig, 1, wxEXPAND);
m_panel->SetSizer(m_sizerFrame);
- m_panel->SetAutoLayout(true);
-
m_sizerFrame->Fit(this);
+ m_sizerFrame->SetSizeHints(this);
Centre(wxBOTH);