X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4dddb8a2dde675b85bbe28399b921648a22e6be1..9d5507f7a2701395e1d5c121bd877bb9066ee6ea:/include/wx/msw/icon.h diff --git a/include/wx/msw/icon.h b/include/wx/msw/icon.h index f7e3f41ad1..c4b420937c 100644 --- a/include/wx/msw/icon.h +++ b/include/wx/msw/icon.h @@ -12,10 +12,6 @@ #ifndef _WX_ICON_H_ #define _WX_ICON_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "icon.h" -#endif - // ---------------------------------------------------------------------------- // headers // ---------------------------------------------------------------------------- @@ -48,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); @@ -72,13 +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 - { return m_refData != icon.m_refData; } - // implementation only from now on wxIconRefData *GetIconData() const { return (wxIconRefData *)m_refData; }