X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..926395e16b8ee7a2988078e9cf6ea5c7e88500e0:/include/wx/mac/classic/icon.h diff --git a/include/wx/mac/classic/icon.h b/include/wx/mac/classic/icon.h index ca42a7b242..8a137f6d18 100644 --- a/include/wx/mac/classic/icon.h +++ b/include/wx/mac/classic/icon.h @@ -20,11 +20,6 @@ class WXDLLEXPORT wxIcon: public wxBitmap public: wxIcon(); - // Copy constructors - wxIcon(const wxIcon& icon) - : wxBitmap() - { Ref(icon); } - wxIcon(const char **data); wxIcon(char **data); wxIcon(const char bits[], int width , int height ); @@ -41,8 +36,6 @@ public: bool LoadFile(const wxString& name ,wxBitmapType flags = wxBITMAP_TYPE_ICON_RESOURCE ) { return LoadFile( name , flags , -1 , -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 { return !(*this == icon); }