X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d921af5140af576cf7651d4f47d5dc00a83e37f5..b38b0d22d7a97ff66d824e11e3e1c96c4423900b:/include/wx/mac/cursor.h diff --git a/include/wx/mac/cursor.h b/include/wx/mac/cursor.h index bffacb52ed..7f1a8ea8b4 100644 --- a/include/wx/mac/cursor.h +++ b/include/wx/mac/cursor.h @@ -56,13 +56,15 @@ public: const char maskBits[] = NULL); wxCursor(const wxImage & image) ; - + wxCursor(const char **bits) ; + wxCursor(char **bits) ; wxCursor(const wxString& name, long flags = wxBITMAP_TYPE_MACCURSOR_RESOURCE, - int hotSpotX = 0, int hotSpotY = 0); + int hotSpotX = 0, int hotSpotY = 0); wxCursor(int cursor_type); ~wxCursor(); + bool CreateFromXpm(const char **bits) ; virtual bool Ok() const { return (m_refData != NULL && ( M_CURSORDATA->m_hCursor != NULL || M_CURSORDATA->m_themeCursor != -1 ) ) ; } inline wxCursor& operator = (const wxCursor& cursor) { if (*this == cursor) return (*this); Ref(cursor); return *this; }