]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_control.i
more warning fixes about empty if statement in helper classes in release build
[wxWidgets.git] / wxPython / src / _control.i
index 10b7b43f45ec73a79d5a464177361387f1f07b54..d755d752702c2d5dd6031c6a412e4323210b819b 100644 (file)
@@ -288,7 +288,12 @@ slightly more natural for controls which support multiple selection.", "");
             for i in items:
                 self.Append(i)        
     }
-    %property(Items, GetItems, SetItems);
+    
+    %property(Count, GetCount, doc="See `GetCount`");
+    %property(Items, GetItems, SetItems, doc="See `GetItems` and `SetItems`");
+    %property(Selection, GetSelection, SetSelection, doc="See `GetSelection` and `SetSelection`");
+    %property(StringSelection, GetStringSelection, SetStringSelection, doc="See `GetStringSelection` and `SetStringSelection`");
+    %property(Strings, GetStrings, doc="See `GetStrings`");
     
 };