]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/icon.cpp
Fixed event handling for DialogEd
[wxWidgets.git] / src / gtk1 / icon.cpp
index a65627746cd31285c5c35f1010a472c8015c5247..33d85df2ac9283f7e59fb4ef2ff6c4ecb9eb09be 100644 (file)
 
 IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap)
 
+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; 
+}
+