]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/cursor.cpp
gcc signed/unsigned comparison fix
[wxWidgets.git] / src / msw / cursor.cpp
index cdc7992e51cd0ac52a5143c88024f8293b436977..998ec54bcea798a1fd4d87bfdfcce7dd59a5c988 100644 (file)
@@ -386,16 +386,6 @@ wxCursor::~wxCursor()
 // other wxCursor functions
 // ----------------------------------------------------------------------------
 
-bool wxCursor::operator==(const wxCursor& cursor) const
-{
-    if ( !m_refData )
-        return !cursor.m_refData;
-
-    return cursor.m_refData &&
-                ((wxCursorRefData *)m_refData)->m_hCursor ==
-                ((wxCursorRefData *)cursor.m_refData)->m_hCursor;
-}
-
 wxGDIImageRefData *wxCursor::CreateData() const
 {
     return new wxCursorRefData;