]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_event.i
Allow unicode objects in wxPyDrawTextList
[wxWidgets.git] / wxPython / src / _event.i
index 53bf9e1d4ce888d6e0c252f468b076412cbfa6ff..8feb6f6934a0f52761f7e7984db7909edc27428f 100644 (file)
@@ -809,15 +809,13 @@ public:
 
     wxPoint GetPosition() const;
     wxRect GetRect() const;
-    void SetRect(wxRect rect);
-    %extend {
-        void SetPosition(wxPoint pos) {
-            self->m_pos = pos;
-        }
-    }
+    void SetRect(const wxRect& rect);
+    void SetPosition(const wxPoint& pos);
 
-    wxPoint m_pos;
-    wxRect m_rect;
+    %pythoncode {
+        m_pos =  property(GetPosition, SetPosition)
+        m_rect = property(GetRect, SetRect)
+    }
 };
 
 //---------------------------------------------------------------------------