]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/icon.cpp
Deprecated and obsolete parts marked up for backward compatibility.
[wxWidgets.git] / src / gtk1 / icon.cpp
index 37ce52b757ffcf07611ad4f4ec58ddb75efe8cad..0d82d6830b2c755e12f86e6bf867909d0a55371c 100644 (file)
@@ -7,9 +7,8 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-#pragma implementation "icon.h"
-#endif
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
 
 #include "wx/icon.h"
 
 
 IMPLEMENT_DYNAMIC_CLASS(wxIcon,wxBitmap)
 
-wxIcon::wxIcon( const char **bits, int WXUNUSED(width), int WXUNUSED(height) ) : 
-    wxBitmap( bits ) 
+wxIcon::wxIcon( const 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( char **bits, int WXUNUSED(width), int WXUNUSED(height) ) :
+    wxBitmap( bits )
+{
 }
 
-wxIcon::wxIcon( const wxIcon* icon ) : wxBitmap()
-{ 
-    if (icon) Ref(*icon); 
+wxIcon::wxIcon() :  wxBitmap()
+{
 }
 
-wxIcon& wxIcon::operator = ( const wxIcon& icon )
-{ 
-    if (*this == icon) return (*this); 
-    Ref(icon); 
-    return *this; 
+void wxIcon::CopyFromBitmap(const wxBitmap& bmp)
+{
+    wxIcon *icon = (wxIcon*)(&bmp);
+    *this = *icon;
 }
-