]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_statusbar.i
New wxDesigner-less version of the MimeTypesManager demo
[wxWidgets.git] / wxPython / src / _statusbar.i
index 360970e3fafb221d69b1d33c9aeec0db461fcfca..48ef90034fc0e40a5250ccaaa23405b99780e714 100644 (file)
@@ -59,8 +59,14 @@ public:
     virtual void SetStatusWidths(int widths, const int* widths_field); // uses typemap in _toplvl.i
 
     // Get the position and size of the field's internal bounding rectangle
-    virtual bool GetFieldRect(int i, wxRect& rect) const;
-
+    %extend {
+        wxRect GetFieldRect(int i) {
+            wxRect r;
+            self->GetFieldRect(i, r);
+            return r;
+        }
+    }
+    
     // sets the minimal vertical size of the status bar
     virtual void SetMinHeight(int height);