]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/cursor.cpp
reSWIGged
[wxWidgets.git] / src / mgl / cursor.cpp
index d2334ba0d2aa3d4681881661336cf8dec7fbe8f6..48e37f2b5981e74e961057908e8450ca99aa3858 100644 (file)
 #endif
 
 #include "wx/cursor.h"
+
+#ifndef WX_PRECOMP
+    #include "wx/intl.h"
+    #include "wx/log.h"
+    #include "wx/utils.h"
+    #include "wx/hashmap.h"
+#endif
+
 #include "wx/module.h"
-#include "wx/utils.h"
-#include "wx/log.h"
-#include "wx/intl.h"
-#include "wx/hashmap.h"
 
 #include "wx/mgl/private.h"
 
@@ -167,24 +171,11 @@ wxCursor::wxCursor(const wxString& cursor_file,
     }
 }
 
-wxCursor::wxCursor(const wxCursor &cursor)
-{
-    Ref(cursor);
-}
-
 wxCursor::~wxCursor()
 {
     // wxObject unrefs data
 }
 
-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);
@@ -256,7 +247,7 @@ void wxEndBusyCursor()
     gs_savedCursor = wxNullCursor;
 }
 
-void wxBeginBusyCursor(wxCursor *cursor)
+void wxBeginBusyCursor(const wxCursor *cursor)
 {
     if ( gs_busyCount++ > 0 ) return;