X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..7ca4ac63835adef8226b655013a8a84b416c8171:/include/wx/msw/cursor.h?ds=inline diff --git a/include/wx/msw/cursor.h b/include/wx/msw/cursor.h index 27c9bedc85..2e194f10f2 100644 --- a/include/wx/msw/cursor.h +++ b/include/wx/msw/cursor.h @@ -22,7 +22,6 @@ class WXDLLEXPORT wxCursor : public wxGDIImage public: // constructors wxCursor(); - wxCursor(const wxCursor& cursor) : wxGDIImage(cursor) { Ref(cursor); } wxCursor(const wxImage& image); wxCursor(const char bits[], int width, int height, int hotSpotX = -1, int hotSpotY = -1, @@ -33,9 +32,6 @@ public: wxCursor(int idCursor); virtual ~wxCursor(); - wxCursor& operator=(const wxCursor& cursor) - { if (*this == cursor) return (*this); Ref(cursor); return *this; } - bool operator==(const wxCursor& cursor) const; bool operator!=(const wxCursor& cursor) const { return !(*this == cursor); }