]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/xpmdecod.h
account for scroll offset correctly in the mouse event handler
[wxWidgets.git] / include / wx / xpmdecod.h
index 5fd3ebe509ec00cf38e99aad136b552e7c28c7d5..00e33a728fa7fa18357095ac96157c4f9a789d32 100644 (file)
@@ -21,7 +21,7 @@ class WXDLLIMPEXP_FWD_BASE wxInputStream;
 // wxXPMDecoder class
 // --------------------------------------------------------------------------
 
-class WXDLLEXPORT wxXPMDecoder
+class WXDLLIMPEXP_CORE wxXPMDecoder
 {
 public:
     // constructor, destructor, etc.
@@ -38,7 +38,7 @@ public:
     wxImage ReadData(const char* const* xpm_data);
 #ifdef __BORLANDC__
     // needed for Borland 5.5
-    wxImage ReadData(char** xpm_data) { return ReadData(wx_const_cast(const char* const*, xpm_data)); }
+    wxImage ReadData(char** xpm_data) { return ReadData(const_cast<const char* const*>(xpm_data)); }
 #endif
 };