]> git.saurik.com Git - wxWidgets.git/commitdiff
corrected initialization of private wxBitmapHandler members in wxPICTResourceHandler...
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Sun, 6 Feb 2005 14:36:03 +0000 (14:36 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Sun, 6 Feb 2005 14:36:03 +0000 (14:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31788 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/bitmap.cpp

index 71aaca2aa76fd32d058c745480f48e74fb29e071..a43d731eb391d8adbd857c71579b10fba551dced 100644 (file)
@@ -1287,9 +1287,9 @@ class WXDLLEXPORT wxPICTResourceHandler: public wxBitmapHandler
 public:
     inline wxPICTResourceHandler()
     {
-        m_name = wxT("Macintosh Pict resource");
-        m_extension = wxEmptyString;
-        m_type = wxBITMAP_TYPE_PICT_RESOURCE;
+        SetName(wxT("Macintosh Pict resource"));
+        SetExtension(wxEmptyString);
+        SetType(wxBITMAP_TYPE_PICT_RESOURCE);
     };
 
     virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,