wxPageSetupDialog no longer derives from wxDialog
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30740 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
1c272b5d9e
commit
32bf5e4a38
@ -178,15 +178,19 @@ public:
|
||||
|
||||
|
||||
|
||||
// NOTE: Contrary to it's name, this class doesn't derive from wxDialog. It
|
||||
// is a facade in front of a platform-specific (native dialog) provided by the
|
||||
// wxPrintFactory.
|
||||
|
||||
MustHaveApp(wxPageSetupDialog);
|
||||
|
||||
class wxPageSetupDialog : public wxDialog {
|
||||
class wxPageSetupDialog : public wxObject
|
||||
{
|
||||
public:
|
||||
%pythonAppend wxPageSetupDialog "self._setOORInfo(self)"
|
||||
|
||||
wxPageSetupDialog(wxWindow* parent, wxPageSetupDialogData* data = NULL);
|
||||
|
||||
wxPageSetupDialogData& GetPageSetupData();
|
||||
wxPageSetupDialogData& GetPageSetupDialogData();
|
||||
int ShowModal();
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user