Readded deprec. constructor.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17142 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2002-09-11 22:03:29 +00:00
parent d57ad37701
commit 009a066588
2 changed files with 32 additions and 1 deletions

View File

@@ -42,9 +42,15 @@ public:
// Recommended constructor
wxPostScriptDC(const wxPrintData& printData);
~wxPostScriptDC();
#if WXWIN_COMPATIBILITY_2_2
wxPostScriptDC( const wxString &output, bool interactive = FALSE, wxWindow *parent = NULL )
{ Create( output, interactive, parent ); }
bool Create ( const wxString &output, bool interactive = FALSE, wxWindow *parent = NULL );
#endif
virtual bool Ok() const;
virtual void BeginDrawing() {}