X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b1f0e54a75dd7abc9f666a39f5bf9810d11a7b7c..1b895132c960415872de82c1d47589b6b55cecee:/include/wx/generic/dcpsg.h diff --git a/include/wx/generic/dcpsg.h b/include/wx/generic/dcpsg.h index 3cfbba636a..bb66e50ce1 100644 --- a/include/wx/generic/dcpsg.h +++ b/include/wx/generic/dcpsg.h @@ -27,7 +27,7 @@ //----------------------------------------------------------------------------- -class WXDLLEXPORT wxPostScriptDC : public wxDC +class WXDLLIMPEXP_CORE wxPostScriptDC : public wxDC { public: wxPostScriptDC(); @@ -39,7 +39,7 @@ private: DECLARE_DYNAMIC_CLASS(wxPostScriptDC) }; -class WXDLLEXPORT wxPostScriptDCImpl : public wxDCImpl +class WXDLLIMPEXP_CORE wxPostScriptDCImpl : public wxDCImpl { public: wxPostScriptDCImpl( wxPrinterDC *owner ); @@ -119,7 +119,10 @@ protected: void DoDrawText(const wxString& text, wxCoord x, wxCoord y); void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle); void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height); - void DoSetClippingRegionAsRegion( const wxRegion &WXUNUSED(clip)) { } + void DoSetDeviceClippingRegion( const wxRegion &WXUNUSED(clip)) + { + wxFAIL_MSG( "not implemented" ); + } void DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y, wxCoord *descent = NULL, wxCoord *externalLeading = NULL, @@ -128,7 +131,6 @@ protected: void DoGetSizeMM(int *width, int *height) const; FILE* m_pstream; // PostScript output stream - wxString m_title; unsigned char m_currentRed; unsigned char m_currentGreen; unsigned char m_currentBlue;