]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/icon.cpp
fix memory leak (coverity checker CID 53)
[wxWidgets.git] / src / gtk1 / icon.cpp
index 776adeb423c7e036ece9217e5a2598d99f9e836b..0d82d6830b2c755e12f86e6bf867909d0a55371c 100644 (file)
@@ -32,18 +32,6 @@ wxIcon::wxIcon() :  wxBitmap()
 {
 }
 
-wxIcon::wxIcon( const wxIcon& icon ) : wxBitmap()
-{
-    Ref(icon);
-}
-
-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);