X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6334d90353c18963d4fd7c2cafd782fb61dd6e71..728cf0ad42337194bab1bca09b259e85d3f6f620:/src/generic/propdlg.cpp diff --git a/src/generic/propdlg.cpp b/src/generic/propdlg.cpp index d463f21ead..939ff9ee85 100644 --- a/src/generic/propdlg.cpp +++ b/src/generic/propdlg.cpp @@ -62,6 +62,8 @@ bool wxPropertySheetDialog::Create(wxWindow* parent, wxWindowID id, const wxStri const wxPoint& pos, const wxSize& sz, long style, const wxString& name) { + parent = GetParentForModalDialog(parent); + if (!wxDialog::Create(parent, id, title, pos, sz, style|wxCLIP_CHILDREN, name)) return false; @@ -119,15 +121,11 @@ void wxPropertySheetDialog::CreateButtons(int flags) #endif wxSizer *buttonSizer = CreateButtonSizer( flags & ButtonSizerFlags ); - if(buttonSizer->GetChildren().GetCount() > 0 ) + if( buttonSizer ) { m_innerSizer->Add( buttonSizer, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM|wxLEFT|wxRIGHT, 2); m_innerSizer->AddSpacer(2); } - else - { - delete buttonSizer; - } #ifdef __POCKETPC__ // restore system option @@ -227,4 +225,10 @@ void wxPropertySheetDialog::OnIdle(wxIdleEvent& event) } } +// Override function in base +wxWindow* wxPropertySheetDialog::GetContentWindow() const +{ + return GetBookCtrl(); +} + #endif // wxUSE_BOOKCTRL