]> git.saurik.com Git - wxWidgets.git/blobdiff - src/dfb/cursor.cpp
support real transparency for controls that return HasTransparentBackground() in...
[wxWidgets.git] / src / dfb / cursor.cpp
index 58417b3d3b9ae9266011c130ff4ba703a10c5f7c..c5465f52fceac5dcf6e7f07be06a6f309e851a8f 100644 (file)
@@ -63,30 +63,11 @@ wxCursor::wxCursor(const wxString& cursor_file,
 #warning "FIXME"
 }
 
-bool wxCursor::Ok() const
+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;