]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/cursor.h
cleanup - added whitespace around operators, some blank lines, fixed comment typos...
[wxWidgets.git] / include / wx / os2 / cursor.h
index 239c87e3665d66ddb8fab3306b6400983d924a4d..029dec50cb633937850c6a73dba30f496cf7cd52 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     10/13/99
 // RCS-ID:      $Id$
 // Copyright:   (c) David Webster
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_CURSOR_H_
@@ -32,8 +32,6 @@ class WXDLLEXPORT wxCursor: public wxBitmap
 public:
     wxCursor();
 
-    // Copy constructors
-    wxCursor(const wxCursor& rCursor) { Ref(rCursor); }
     wxCursor(const wxImage& rImage);
 
     wxCursor( const char acBits[]
@@ -50,14 +48,6 @@ public:
             );
     wxCursor(int nCursorType);
     inline ~wxCursor() { }
-
-    inline wxCursor& operator = (const wxCursor& rCursor)
-    {
-        if (*this == rCursor)
-            return (*this);
-        Ref(rCursor);
-        return *this;
-    }
     inline bool operator == (const wxCursor& rCursor) const { return m_refData == rCursor.m_refData; }
     inline bool operator != (const wxCursor& rCursor) const { return m_refData != rCursor.m_refData; }