remove/replace redundant SetAutoLayout() and Fit() calls, leave just SetSizer[AndFit]() ones (patch 1905759)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52525 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-03-15 02:08:02 +00:00
parent adcb6f88ee
commit 92c01615ec
17 changed files with 14 additions and 50 deletions

View File

@@ -426,12 +426,10 @@ MySizerDialog::MySizerDialog(wxWindow *parent, const wxString &title)
wxButton *button2 = new wxButton( panel, wxID_ANY, _T("Hallo") );
panelsizer->Add( button2, 0, wxALIGN_RIGHT | wxLEFT|wxRIGHT|wxBOTTOM, 30 );
panel->SetAutoLayout( true );
panel->SetSizer( panelsizer );
// Tell dialog to use sizer
SetSizer( topsizer );
topsizer->SetSizeHints( this );
SetSizerAndFit( topsizer );
}
// ----------------------------------------------------------------------------
@@ -662,11 +660,7 @@ MyNestedSizerFrame::MyNestedSizerFrame(const wxString &title, int x, int y )
m_target = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize( 80, wxDefaultCoord ) );
main_sizer->Add( m_target, 1, wxALL|wxGROW, 5 );
SetSizer( main_sizer);
Layout();
GetSizer()->Fit( this );
GetSizer()->SetSizeHints( this );
SetSizerAndFit( main_sizer);
}
@@ -708,8 +702,6 @@ MyWrapSizerFrame::MyWrapSizerFrame(const wxString &title, int x, int y )
root->Add( ps_bottom, 1, wxEXPAND | wxALL, 5 );
// Set sizer for window
SetSizer( root );
root->Fit( this );
root->SetSizeHints( this );
SetSizerAndFit( root );
}