]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/cursor.h
Tinderbox build fix for wxUnivGTK build.
[wxWidgets.git] / include / wx / motif / cursor.h
index 6442dabda5bad684d59487bf9feaf77ee95e36a1..e0882ffc64cc4e1cdfcb2279fcbfc91ec583cd5c 100644 (file)
@@ -24,10 +24,7 @@ class WXDLLEXPORT wxCursor: public wxObject
         
 public:
     wxCursor();
-    
-    // Copy constructors
-    wxCursor(const wxCursor& cursor) { Ref(cursor); }
-    
+
     wxCursor(const char bits[], int width, int height,
              int hotSpotX = -1, int hotSpotY = -1,
              const char maskBits[] = NULL);
@@ -44,8 +41,6 @@ public:
     
     virtual bool Ok() const;
     
-    wxCursor& operator = (const wxCursor& cursor)
-        { if (*this == cursor) return (*this); Ref(cursor); return *this; }
     bool operator == (const wxCursor& cursor) const
         { return m_refData == cursor.m_refData; }
     bool operator != (const wxCursor& cursor) const