]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/icon.h
wxMultiChoiceDialog uses now wxCheckListBox if possible, wxListBox if not
[wxWidgets.git] / include / wx / mac / carbon / icon.h
index cc90942c702301ed032a2229e825157343d7ef7a..64bdcc74ff8ba089dee958fa6d5b20ad1a43b0b8 100644 (file)
 #ifndef _WX_ICON_H_
 #define _WX_ICON_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "icon.h"
-#endif
-
 #include "wx/bitmap.h"
 
 // Icon
@@ -26,7 +22,10 @@ public:
 
     // Copy constructors
     wxIcon(const wxIcon& icon)
-      { Ref(icon); }
+        : wxGDIObject()
+    {
+        Ref(icon);
+    }
 
     wxIcon(const char **data);
     wxIcon(char **data);
@@ -62,7 +61,7 @@ public:
     void SetHeight(int h);
     void SetDepth(int d);
     void SetOk(bool isOk);
-    
+
     WXHICON GetHICON() const ;
 
     DECLARE_DYNAMIC_CLASS(wxIcon)