Add some dtor wrappers for the print dialogs that are not really

dialogs


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39278 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-05-23 02:05:01 +00:00
parent c1f50b06ec
commit 7847dc507a

View File

@@ -223,10 +223,13 @@ class wxPageSetupDialog : public wxObject
{
public:
wxPageSetupDialog(wxWindow* parent, wxPageSetupDialogData* data = NULL);
~wxPageSetupDialog();
wxPageSetupDialogData& GetPageSetupData();
wxPageSetupDialogData& GetPageSetupDialogData();
int ShowModal();
%pythoncode { def Destroy(self): pass }
};
//---------------------------------------------------------------------------
@@ -300,6 +303,8 @@ public:
// TODO?: wxPrintDialog(wxWindow *parent, wxPrintData* data);
~wxPrintDialog();
virtual int ShowModal();
virtual wxPrintDialogData& GetPrintDialogData();
@@ -308,6 +313,7 @@ public:
%newobject GetPrintDC;
virtual wxDC *GetPrintDC();
%pythoncode { def Destroy(self): pass }
};