Follow CreateButtonSizer interface change.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41883 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
2569ebc257
commit
c51664fc85
@ -129,15 +129,10 @@ LifeSamplesDialog::LifeSamplesDialog(wxWindow *parent)
|
||||
#endif // wxUSE_STATLINE
|
||||
sizer3->Add( sizer2, 1, wxGROW | wxALL, 5 );
|
||||
|
||||
wxSizer *buttonSizer = CreateButtonSizer( wxOK|wxCANCEL , true, 10 );
|
||||
if(buttonSizer->GetChildren().GetCount() > 0 )
|
||||
wxSizer *sizerBtns = CreateButtonSizer(wxOK|wxCANCEL);
|
||||
if ( sizerBtns )
|
||||
{
|
||||
sizer3->Add( buttonSizer, 0, wxEXPAND | wxALL, 10 );
|
||||
}
|
||||
else
|
||||
{
|
||||
sizer3->AddSpacer( 10 );
|
||||
delete buttonSizer;
|
||||
sizer3->Add(sizerBtns, wxSizerFlags().Expand().Border());
|
||||
}
|
||||
|
||||
// activate
|
||||
@ -202,15 +197,10 @@ XLife is (c) 1989 by Jon Bennett et al.")),
|
||||
0, wxCENTRE | wxRIGHT|wxLEFT|wxTOP, 20 );
|
||||
|
||||
// buttons if any
|
||||
wxSizer *buttonSizer = CreateButtonSizer( wxOK , true, 10 );
|
||||
if(buttonSizer->GetChildren().GetCount() > 0 )
|
||||
wxSizer *sizerBtns = CreateButtonSizer(wxOK);
|
||||
if ( sizerBtns )
|
||||
{
|
||||
sizer->Add( buttonSizer, 0, wxEXPAND | wxALL, 10 );
|
||||
}
|
||||
else
|
||||
{
|
||||
sizer->AddSpacer( 20 );
|
||||
delete buttonSizer;
|
||||
sizer->Add(sizerBtns, wxSizerFlags().Expand().Border());
|
||||
}
|
||||
|
||||
// activate
|
||||
|
Loading…
Reference in New Issue
Block a user