X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8cf73271dd6f442a98e86b559d4a55c37e25b99f..dc484d491b15355285a89da275c58c2ef247d1f4:/include/wx/mac/carbon/pnghand.h?ds=sidebyside diff --git a/include/wx/mac/carbon/pnghand.h b/include/wx/mac/carbon/pnghand.h index 19271c4705..2d8b4a0b27 100644 --- a/include/wx/mac/carbon/pnghand.h +++ b/include/wx/mac/carbon/pnghand.h @@ -9,22 +9,22 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "pnghand.h" -#endif - #ifndef _WX_PNGHAND_H_ #define _WX_PNGHAND_H_ +#include "wx/defs.h" + +#if wxUSE_LIBPNG + class WXDLLEXPORT wxPNGFileHandler: public wxBitmapHandler { DECLARE_DYNAMIC_CLASS(wxPNGFileHandler) public: inline wxPNGFileHandler(void) { - m_name = wxT("PNG bitmap file"); - m_extension = wxT("bmp"); - m_type = wxBITMAP_TYPE_PNG; + SetName(wxT("PNG bitmap file")); + SetExtension(wxT("bmp")); + SetType(wxBITMAP_TYPE_PNG); }; virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags, @@ -32,6 +32,8 @@ public: virtual bool SaveFile(const wxBitmap *bitmap, const wxString& name, int type, const wxPalette *palette = NULL); }; +#endif //wxUSE_LIBPNG + #endif // _WX_PNGHAND_H_