X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/99d800190a04a2deaf769017a5fae04a4ae50378..b466e85a7e81db84545bc44c83cbe4ccacd4fe8e:/include/wx/printdlg.h diff --git a/include/wx/printdlg.h b/include/wx/printdlg.h index 56327b9f27..1889279904 100644 --- a/include/wx/printdlg.h +++ b/include/wx/printdlg.h @@ -12,10 +12,6 @@ #ifndef _WX_PRINTDLG_H_BASE_ #define _WX_PRINTDLG_H_BASE_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "printdlg.h" -#endif - #include "wx/defs.h" #if wxUSE_PRINTING_ARCHITECTURE @@ -30,7 +26,7 @@ // wxPrintDialogBase: interface for the dialog for printing // --------------------------------------------------------------------------- -class WXDLLEXPORT wxPrintDialogBase : public wxDialog +class WXDLLIMPEXP_CORE wxPrintDialogBase : public wxDialog { public: wxPrintDialogBase() { } @@ -54,12 +50,12 @@ private: // wxPrintDialog: the dialog for printing. // --------------------------------------------------------------------------- -class WXDLLEXPORT wxPrintDialog : public wxObject +class WXDLLIMPEXP_CORE wxPrintDialog : public wxObject { public: wxPrintDialog(wxWindow *parent, wxPrintDialogData* data = NULL); wxPrintDialog(wxWindow *parent, wxPrintData* data); - ~wxPrintDialog(); + virtual ~wxPrintDialog(); virtual int ShowModal(); @@ -79,7 +75,7 @@ private: // wxPageSetupDialogBase: interface for the page setup dialog // --------------------------------------------------------------------------- -class WXDLLEXPORT wxPageSetupDialogBase: public wxDialog +class WXDLLIMPEXP_CORE wxPageSetupDialogBase: public wxDialog { public: wxPageSetupDialogBase() { } @@ -101,11 +97,11 @@ private: // wxPageSetupDialog: the page setup dialog // --------------------------------------------------------------------------- -class WXDLLEXPORT wxPageSetupDialog: public wxObject +class WXDLLIMPEXP_CORE wxPageSetupDialog: public wxObject { public: wxPageSetupDialog(wxWindow *parent, wxPageSetupDialogData *data = NULL); - ~wxPageSetupDialog(); + virtual ~wxPageSetupDialog(); int ShowModal(); wxPageSetupDialogData& GetPageSetupDialogData();