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;
}
}
+// Override function in base
+wxWindow* wxPropertySheetDialog::GetContentWindow() const
+{
+ return GetBookCtrl();
+}
+
#endif // wxUSE_BOOKCTRL