]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/controls.i
Reorganized listctrl demo a bit so I can test a bug report
[wxWidgets.git] / wxPython / src / controls.i
index efc72fcafa893aad77450fd6bd9861032074b06f..aca2ea143b381dad7bac9ac181b41d61b5f99fb9 100644 (file)
@@ -857,6 +857,10 @@ public:
     void SelectAll();
     void SetEditable(bool editable);
 
+    bool IsSingleLine();
+    bool IsMultiLine();
+
+
     %addmethods {
         void write(const wxString& text) {
             self->AppendText(text);
@@ -866,7 +870,7 @@ public:
     // TODO: replace this when the method is really added to wxTextCtrl
     %addmethods {
         wxString GetString(long from, long to) {
-            return self->GetValue().Mid(from, to-from);
+            return self->GetValue().Mid(from, to - from);
         }
     }
 };