X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f8855e47254a28f5141524b3aaaac03c2944e997..9d5507f7a2701395e1d5c121bd877bb9066ee6ea:/include/wx/mac/carbon/cursor.h?ds=sidebyside diff --git a/include/wx/mac/carbon/cursor.h b/include/wx/mac/carbon/cursor.h index cf62dbf40a..7cbe319bc6 100644 --- a/include/wx/mac/carbon/cursor.h +++ b/include/wx/mac/carbon/cursor.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: cursor.h +// Name: wx/mac/carbon/cursor.h // Purpose: wxCursor class // Author: Stefan Csomor // Modified by: @@ -15,7 +15,7 @@ #include "wx/bitmap.h" // Cursor -class WXDLLEXPORT wxCursor: public wxBitmap +class WXDLLEXPORT wxCursor: public wxGDIObject { DECLARE_DYNAMIC_CLASS(wxCursor) @@ -32,13 +32,11 @@ public: int hotSpotX = 0, int hotSpotY = 0); wxCursor(int cursor_type); - ~wxCursor(); + virtual ~wxCursor(); - bool CreateFromXpm(const char **bits) ; - virtual bool Ok() const ; - - inline bool operator == (const wxCursor& cursor) const { return m_refData == cursor.m_refData; } - inline bool operator != (const wxCursor& cursor) const { return m_refData != cursor.m_refData; } + bool CreateFromXpm(const char **bits) ; + virtual bool Ok() const { return IsOk(); } + virtual bool IsOk() const ; void MacInstall() const ;