]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/icon.cpp
Added USE_CONFIG
[wxWidgets.git] / src / gtk1 / icon.cpp
index 7ab44845375870a4f734f40d79b1ff40c85d8da0..33d85df2ac9283f7e59fb4ef2ff6c4ecb9eb09be 100644 (file)
 
 IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap)
 
-wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
-    wxBitmap( bits ) 
+wxIcon::wxIcon( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) : 
+  wxBitmap( bits ) 
 {
-};
+}
     
+wxIcon::wxIcon() :  wxBitmap() 
+{  
+}
+
+wxIcon::wxIcon(const wxIcon& icon) : wxBitmap()
+{ 
+  Ref(icon); 
+}
+
+wxIcon::wxIcon(const wxIcon* icon) : wxBitmap()
+{ 
+  if (icon) Ref(*icon); 
+}
+
+wxIcon& wxIcon::operator = (const wxIcon& icon) 
+{ 
+  if (*this == icon) return (*this); 
+  Ref(icon); 
+  return *this; 
+}
+