X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c69a2ec864e94f58243500ca6d41c980b0fa4fe..09ac36f80b4bedc3e5ae3d37c20c2a8e5e970ae2:/wxPython/demo/Main.py diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index c5ec3fa129..2c99409724 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -47,29 +47,6 @@ import images _treeList = [ # new stuff ('Recent Additions/Updates', [ - 'RichTextCtrl', - 'Treebook', - 'Toolbook', - 'BitmapFromBuffer', - 'RawBitmapAccess', - 'DragScroller', - 'DelayedResult', - 'ExpandoTextCtrl', - 'ButtonPanel', - 'FlatNotebook', - 'CustomTreeCtrl', - 'AboutBox', - 'AlphaDrawing', - 'GraphicsContext', - 'CollapsiblePane', - 'ComboCtrl', - 'OwnerDrawnComboBox', - 'BitmapComboBox', - 'I18N', - 'Img2PyArtProvider', - 'SearchCtrl', - 'SizedControls', - 'AUI_MDI', ]), # managed windows == things with a (optional) caption you can close @@ -214,6 +191,7 @@ _treeList = [ 'Throbber', 'Ticker', 'TimeCtrl', + 'TreeMixin', 'VListBox', ]), @@ -729,7 +707,7 @@ class DemoCodePanel(wx.Panel): os.makedirs(GetModifiedDirectory()) if not os.path.exists(GetModifiedDirectory()): wx.LogMessage("BUG: Created demo directory but it still doesn't exist") - raise AssetionError + raise AssertionError except: wx.LogMessage("Error creating demo directory: %s" % GetModifiedDirectory()) return @@ -1688,7 +1666,7 @@ class wxPythonDemo(wx.Frame): def OnOpenWidgetInspector(self, evt): # Activate the widget inspection tool - from wx.lib.inspect import InspectionTool + from wx.lib.inspection import InspectionTool if not InspectionTool().initialized: InspectionTool().Init()