]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/icon.h
removed const before WXCOLORREF because (1) g++ 3.1 doesn't like it and (2) it doesn...
[wxWidgets.git] / include / wx / mac / carbon / icon.h
index 5a3b8d45cbe5f962492f97e479a49c290e543523..2e9e0d0af93d8dca084dc7352571b8edc5d70a5e 100644 (file)
@@ -36,15 +36,14 @@ public:
     bool LoadFile(const wxString& name ,wxBitmapType flags = wxBITMAP_TYPE_ICON_RESOURCE )
       { return LoadFile( name , flags , -1 , -1 ) ; }
 
-    bool operator==(const wxIcon& icon) const { return m_refData == icon.m_refData; }
-    bool operator!=(const wxIcon& icon) const { return !(*this == icon); }
 
     // create from bitmap (which should have a mask unless it's monochrome):
     // there shouldn't be any implicit bitmap -> icon conversion (i.e. no
     // ctors, assignment operators...), but it's ok to have such function
     void CopyFromBitmap(const wxBitmap& bmp);
 
-    bool Ok() const;
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const;
     int GetWidth() const;
     int GetHeight() const;
     int GetDepth() const;