X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d14a1e28567de23c586bc80017073d0c39f8d18f..079cc3b670fb1f68f56c71078afd9af765b43512:/wxPython/wx/py/crust.py diff --git a/wxPython/wx/py/crust.py b/wxPython/wx/py/crust.py index c7ac81fa92..2aa6b89276 100644 --- a/wxPython/wx/py/crust.py +++ b/wxPython/wx/py/crust.py @@ -62,20 +62,20 @@ class Crust(wx.SplitterWindow): self.notebook.AddPage(page=self.sessionlisting, text='Session') self.dispatcherlisting = DispatcherListing(parent=self.notebook) self.notebook.AddPage(page=self.dispatcherlisting, text='Dispatcher') - from wxd import wx_ - self.wxdocs = Filling(parent=self.notebook, - rootObject=wx_, - rootLabel='wx', - rootIsNamespace=False, - static=True) - self.notebook.AddPage(page=self.wxdocs, text='wxPython Docs') - from wxd import stc_ - self.stcdocs = Filling(parent=self.notebook, - rootObject=stc_.StyledTextCtrl, - rootLabel='StyledTextCtrl', - rootIsNamespace=False, - static=True) - self.notebook.AddPage(page=self.stcdocs, text='StyledTextCtrl Docs') +## from wxd import wx_ +## self.wxdocs = Filling(parent=self.notebook, +## rootObject=wx_, +## rootLabel='wx', +## rootIsNamespace=False, +## static=True) +## self.notebook.AddPage(page=self.wxdocs, text='wxPython Docs') +## from wxd import stc_ +## self.stcdocs = Filling(parent=self.notebook, +## rootObject=stc_.StyledTextCtrl, +## rootLabel='StyledTextCtrl', +## rootIsNamespace=False, +## static=True) +## self.notebook.AddPage(page=self.stcdocs, text='StyledTextCtrl Docs') self.SplitHorizontally(self.shell, self.notebook, 300) self.SetMinimumPaneSize(1)