]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/dcmemory.h
Add wxHAS_BITMAPTOGGLEBUTTON and test for it in the unit test.
[wxWidgets.git] / include / wx / os2 / dcmemory.h
index 194157da9e74c803ff4d1ff1945757c64e9969ac..a67943ccc7c4b732bd37234883747ea0c3912778 100644 (file)
@@ -15,7 +15,7 @@
 #include "wx/dcmemory.h"
 #include "wx/os2/dc.h"
 
-class WXDLLEXPORT wxMemoryDCImpl: public wxPMDCImpl
+class WXDLLIMPEXP_CORE wxMemoryDCImpl: public wxPMDCImpl
 {
 public:
     wxMemoryDCImpl( wxMemoryDC *owner );
@@ -26,7 +26,7 @@ public:
     virtual void DoGetSize(int* pWidth, int* pHeight) const;
     virtual void DoSelect(const wxBitmap& bitmap);
 
-    virtual wxBitmap DoGetAsBitmap(const wxRect* subrect) const 
+    virtual wxBitmap DoGetAsBitmap(const wxRect* subrect) const
     { return subrect == NULL ? GetSelectedBitmap() : GetSelectedBitmap().GetSubBitmap(*subrect);}
 
 protected:
@@ -37,7 +37,7 @@ protected:
     void Init(void);
 private:
     DECLARE_CLASS(wxMemoryDCImpl)
-    DECLARE_NO_COPY_CLASS(wxMemoryDCImpl)
+    wxDECLARE_NO_COPY_CLASS(wxMemoryDCImpl);
 }; // end of CLASS wxMemoryDCImpl
 
 #endif