X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..4e0a055757f928dce8c53b8e4cb60a699ab43e07:/include/wx/palmos/cursor.h diff --git a/include/wx/palmos/cursor.h b/include/wx/palmos/cursor.h index ed374896a3..f4e8a90e0d 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,13 +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); } - // implementation only void SetHCURSOR(WXHCURSOR cursor) { SetHandle((WXHANDLE)cursor); } WXHCURSOR GetHCURSOR() const { return (WXHCURSOR)GetHandle(); }