]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Main.py
fixed a compile error in one of the stub classes
[wxWidgets.git] / wxPython / demo / Main.py
index 9dfdafc9b07818a351f892b96ae11de2cf83cd2d..af5bae2178dc81e63fd6f9aa4c095cd14316c9b5 100644 (file)
@@ -75,6 +75,8 @@ _treeList = [
         'BitmapComboBox',
         'I18N',
         'Img2PyArtProvider',
+        'SearchCtrl',
+        'SizedControls',
         ]),
 
     # managed windows == things with a (optional) caption you can close
@@ -132,6 +134,7 @@ _treeList = [
         'RadioButton',
         'SashWindow',
         'ScrolledWindow',
+        'SearchCtrl',        
         'Slider',
         'SpinButton',
         'SpinCtrl',
@@ -228,6 +231,7 @@ _treeList = [
         'Layoutf',
         'RowColSizer',
         'ScrolledPanel',
+        'SizedControls',
         'Sizers',
         'XmlResource',
         'XmlResourceHandler',
@@ -1217,7 +1221,7 @@ class wxPythonDemo(wx.Frame):
 
         # Make a Demo menu
         menu = wx.Menu()
-        for item in _treeList:
+        for item in _treeList[:-1]:
             submenu = wx.Menu()
             for childItem in item[1]:
                 mi = submenu.Append(-1, childItem)