]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/icon.h
Add FindLength()
[wxWidgets.git] / include / wx / msw / icon.h
index 4fa08e2f6a5db1a5707a36ac9e2761479230b24a..8682193961c1960dbb0b2adcad5e7f943fe704c1 100644 (file)
@@ -44,9 +44,6 @@ public:
         // default
     wxIcon() { }
 
-        // copy
-    wxIcon(const wxIcon& icon) : wxGDIImage(icon) { Ref(icon); }
-
         // from raw data
     wxIcon(const char bits[], int width, int height);
 
@@ -68,8 +65,6 @@ public:
                           long type = wxBITMAP_TYPE_ICO_RESOURCE,
                           int desiredWidth = -1, int desiredHeight = -1);
 
-    wxIcon& operator = (const wxIcon& icon)
-        { if ( *this != icon ) Ref(icon); return *this; }
     bool operator == (const wxIcon& icon) const
         { return m_refData == icon.m_refData; }
     bool operator != (const wxIcon& icon) const