X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..40989e46b86777dd211faeb3e5d2366cdcc6d8cd:/include/wx/palmos/cursor.h diff --git a/include/wx/palmos/cursor.h b/include/wx/palmos/cursor.h index ed374896a3..ef083421ad 100644 --- a/include/wx/palmos/cursor.h +++ b/include/wx/palmos/cursor.h @@ -22,7 +22,6 @@ class WXDLLEXPORT wxCursor : public wxGDIImage public: // constructors wxCursor(); - wxCursor(const wxCursor& 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); }