Fix missing and broken interface items for Phoenix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71247 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-04-21 00:07:31 +00:00
parent 3cc04de73e
commit ac03e0173b
2 changed files with 46 additions and 5 deletions

View File

@@ -18,7 +18,7 @@
@see @ref overview_printing, @ref overview_cmndlg_print
*/
class wxPrintDialog : public wxDialog
class wxPrintDialog : public wxObject
{
public:
/**
@@ -30,6 +30,7 @@ public:
@see wxPrintDialogData
*/
wxPrintDialog(wxWindow* parent, wxPrintDialogData* data = NULL);
wxPrintDialog(wxWindow *parent, wxPrintData* data);
/**
Destructor.
@@ -54,6 +55,12 @@ public:
*/
virtual wxPrintDialogData& GetPrintDialogData();
/**
Returns the @ref overview_printing_printdata "print data" associated
with the print dialog.
*/
virtual wxPrintData& GetPrintData();
/**
Shows the dialog, returning @c wxID_OK if the user pressed OK, and @c
wxID_CANCEL otherwise.
@@ -89,7 +96,7 @@ public:
@see @ref overview_printing, wxPrintDialog, wxPageSetupDialogData
*/
class wxPageSetupDialog : public wxDialog
class wxPageSetupDialog : public wxObject
{
public:
/**