]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/cursor.cpp
using new API (no visual difference)
[wxWidgets.git] / src / x11 / cursor.cpp
index 7a59872ca1dfffc98a35f56fd0c0b047626fa440..0635c03de7c9949c75b6abb4b05aacbc8d7fdaf0 100644 (file)
@@ -124,12 +124,6 @@ wxCursor::wxCursor(const char bits[], int width, int  height,
    wxFAIL_MSG( wxT("wxCursor creation from bits not yet implemented") );
 }
 
-
-wxCursor::wxCursor( const wxCursor &cursor )
-{
-    Ref( cursor );
-}
-
 #if wxUSE_IMAGE
 wxCursor::wxCursor( const wxImage & image )
 {
@@ -141,16 +135,6 @@ wxCursor::~wxCursor()
 {
 }
 
-wxCursor& wxCursor::operator = ( const wxCursor& cursor )
-{
-    if (*this == cursor)
-        return (*this);
-
-    Ref( cursor );
-
-    return *this;
-}
-
 bool wxCursor::operator == ( const wxCursor& cursor ) const
 {
     return m_refData == cursor.m_refData;