]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/dcpsg.h
added wxFlexGridSizer::Add{Row,Col}Growable() (#2603)
[wxWidgets.git] / include / wx / generic / dcpsg.h
index 3cfbba636a88fbe1c26a6446b2693f505de2ba1b..3bba53d93cfb64a01e331c86d19c68c72494ad52 100644 (file)
@@ -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,