]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/icon.h
One that got away
[wxWidgets.git] / include / wx / gtk1 / icon.h
index 57951a4e385cbf40a5730bfa5b7ca553c7d012b9..7596879cd9de1c27ce8e7513b148276b31b240d5 100644 (file)
@@ -36,15 +36,12 @@ class wxIcon: public wxBitmap
 
 public:
 
-  wxIcon(void) {};
+  wxIcon(void);
+  wxIcon(const wxIcon& icon);
+  wxIcon(const wxIcon* icon);
+  wxIcon( char **bits, int width=-1, int height=-1 );
 
-  inline wxIcon(const wxIcon& icon) { Ref(icon); }
-  inline wxIcon(const wxIcon* icon) { if (icon) Ref(*icon); }
-
-  wxIcon( char **bits, const int width = -1, const int height = -1 ) :
-    wxBitmap( bits ) {};
-    
-  inline wxIcon& operator = (const wxIcon& icon) { if (*this == icon) return (*this); Ref(icon); return *this; }
+  wxIcon& operator = (const wxIcon& icon);
   inline bool operator == (const wxIcon& icon) { return m_refData == icon.m_refData; }
   inline bool operator != (const wxIcon& icon) { return m_refData != icon.m_refData; }
 };