X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b7cacb43db1e69b87b257a67912b4d52995b070a..5770bfeb87b4d68f532bd5ab770531c7320f55f8:/src/dfb/cursor.cpp diff --git a/src/dfb/cursor.cpp b/src/dfb/cursor.cpp index 5f4ea9114b..c5465f52fc 100644 --- a/src/dfb/cursor.cpp +++ b/src/dfb/cursor.cpp @@ -68,25 +68,6 @@ bool wxCursor::IsOk() const return m_refData && M_CURSOR->m_bitmap.Ok(); } -bool wxCursor::operator==(const wxCursor& cursor) const -{ - if ( Ok() ) - { - if ( !cursor.Ok() ) - return false; - else if ( M_CURSOR->m_id != M_CURSOR_OF(cursor)->m_id ) - return false; - else if ( M_CURSOR->m_id == -1 ) // non-stock cursor - return (m_refData == cursor.m_refData); - else - return true; // IDs != -1 and are the same - } - else - { - return !cursor.Ok(); - } -} - wxObjectRefData *wxCursor::CreateRefData() const { return new wxCursorRefData;