// Purpose: interface of wxPropertySheetDialog
// Author: wxWidgets team
// RCS-ID: $Id$
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Add page
wxPanel* panel = new wxPanel(GetBookCtrl(), ...);
- GetBookCtrl()->AddPage(panel, wxT("General"));
+ GetBookCtrl()->AddPage(panel, "General");
LayoutDialog();
return true;
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_DIALOG_STYLE,
- const wxString& name = "dialogBox");
+ const wxString& name = wxDialogNameStr);
/**
Override this if you wish to add the book control in a way different from the
*/
void SetBookCtrl(wxBookCtrlBase* bookCtrl);
- /**
- Sets the inner sizer that contains the book control and button sizer.
-
- You will normally not need to use this.
- */
- void SetInnerSizer(wxSizer* sizer);
-
/**
You can customize the look and feel of the dialog by setting the sheet style.
It is a bit list of the ::wxPropertySheetDialogFlags values.