]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcmirror.h
g++ compilation fix after latest changes
[wxWidgets.git] / include / wx / dcmirror.h
index 5ffb9382a57552f58ca036147048e9453e2e4bba..7ab8d88f250c425203818f09f5effd90351d9f47 100644 (file)
@@ -18,7 +18,7 @@
 // wxMirrorDC allows to write the same code for horz/vertical layout
 // ----------------------------------------------------------------------------
 
-class WXDLLEXPORT wxMirrorDCImpl : public wxDCImpl
+class WXDLLIMPEXP_CORE wxMirrorDCImpl : public wxDCImpl
 {
 public:
     // constructs a mirror DC associated with the given real DC
@@ -246,7 +246,7 @@ protected:
         Mirror(n, points);
     }
 
-    virtual void DoSetClippingRegionAsRegion(const wxRegion& WXUNUSED(region))
+    virtual void DoSetDeviceClippingRegion(const wxRegion& WXUNUSED(region))
     {
         wxFAIL_MSG( _T("not implemented") );
     }
@@ -275,7 +275,7 @@ private:
     DECLARE_NO_COPY_CLASS(wxMirrorDCImpl)
 };
 
-class WXDLLEXPORT wxMirrorDC : public wxDC
+class WXDLLIMPEXP_CORE wxMirrorDC : public wxDC
 {
 public:
     wxMirrorDC(wxDC& dc, bool mirror)