]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_cursor.i
GetDefaultAttributes, and other tweaks needed to get up to date with CVS
[wxWidgets.git] / wxPython / src / _cursor.i
index 7c4acbd0a2943f062a696dcd56238ab015cae3da..b1e103f2aaec91e57316233745f7109c50d4d06f 100644 (file)
@@ -66,6 +66,8 @@ class wxCursor : public wxGDIObject
 {
 public:
     
+    RefDoc(wxCursor, ""); // turn it off for the ctors
+    
     %extend {
         DocStr(wxCursor,
                "Construct a Cursor from a file.  Specify the type of file using\n"
@@ -132,9 +134,11 @@ public:
         long , GetHandle(),
         "Get the MS Windows handle for the cursor");
     
-    DocDeclStr(
-        void , SetHandle(long handle),
-        "Set the MS WIndows handle for the cursor");
+    %extend {
+    DocStr(SetHandle,
+        "Set the MS Windows handle to use for the cursor");
+        void SetHandle(long handle) { self->SetHandle((WXHANDLE)handle); }
+    }
     
 #endif