X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e45080c10b11190028e843b617564caec95e82dd..d0f063020e6fb1b1a660952d0844071e0df24324:/include/wx/os2/icon.h?ds=sidebyside diff --git a/include/wx/os2/icon.h b/include/wx/os2/icon.h index b86db3388f..d289bc0f4c 100644 --- a/include/wx/os2/icon.h +++ b/include/wx/os2/icon.h @@ -22,7 +22,7 @@ #define wxIconRefDataBase wxGDIImageRefData #define wxIconBase wxGDIImage -class WXDLLEXPORT wxIconRefData: public wxIconRefDataBase +class WXDLLIMPEXP_CORE wxIconRefData: public wxIconRefDataBase { public: wxIconRefData() { }; @@ -35,7 +35,7 @@ public: // Icon // --------------------------------------------------------------------------- -class WXDLLEXPORT wxIcon: public wxIconBase +class WXDLLIMPEXP_CORE wxIcon: public wxIconBase { public: wxIcon(); @@ -46,10 +46,10 @@ public: ); wxIcon(const char* const* ppData) { CreateIconFromXpm(ppData); } #ifdef wxNEEDS_CHARPP - wxIcon(char** ppData) { CreateIconFromXpm(wx_const_cast(const char* const*, ppData)); } + wxIcon(char** ppData) { CreateIconFromXpm(const_cast(ppData)); } #endif wxIcon( const wxString& rName - ,long lFlags = wxBITMAP_TYPE_ICO_RESOURCE + ,wxBitmapType lFlags = wxICON_DEFAULT_TYPE ,int nDesiredWidth = -1 ,int nDesiredHeight = -1 ); @@ -61,7 +61,7 @@ public: virtual ~wxIcon(); bool LoadFile( const wxString& rName - ,long lFlags = wxBITMAP_TYPE_ICO_RESOURCE + ,wxBitmapType lFlags = wxICON_DEFAULT_TYPE ,int nDesiredWidth = -1 ,int nDesiredHeight = -1 );