]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/cursor.cpp
Fixed wxGenericFileDialog to work with WinCE, so it can be used to
[wxWidgets.git] / src / x11 / cursor.cpp
index 6625bbdb4a528e27c9c00023fc6599aa9427cb66..0635c03de7c9949c75b6abb4b05aacbc8d7fdaf0 100644 (file)
@@ -6,13 +6,9 @@
 // Created:     17/09/98
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:    wxWidgets licence
+// Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "cursor.h"
-#endif
-
 #include "wx/cursor.h"
 #include "wx/gdicmn.h"
 #include "wx/icon.h"
@@ -128,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 )
 {
@@ -145,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;