diff --git a/wxPython/demo/wxToolBar.py b/wxPython/demo/wxToolBar.py index 83b99599cc..a22833e37a 100644 --- a/wxPython/demo/wxToolBar.py +++ b/wxPython/demo/wxToolBar.py @@ -23,6 +23,8 @@ class TestToolBar(wxFrame): # wxTB_HORIZONTAL | wxNO_BORDER | wxTB_FLAT) #self.SetToolBar(tb) + log.write("Default toolbar tool size: %s\n" % tb.GetToolBitmapSize()) + self.CreateStatusBar() tb.AddSimpleTool(10, images.getNewBitmap(), "New", "Long help for 'New'") diff --git a/wxPython/demo/wxWizard.py b/wxPython/demo/wxWizard.py index 402a307031..9c6d4830cc 100644 --- a/wxPython/demo/wxWizard.py +++ b/wxPython/demo/wxWizard.py @@ -170,6 +170,10 @@ wxWizardPageSimple class can easily be used for the pages.""")) def OnRunDynamicWizard(self, evt): # Create the wizard and the pages + #wizard = wxPreWizard() + #wizard.SetExtraStyle(wxWIZARD_EX_HELPBUTTON) + #wizard.Create(self, self.ID_wiz, "Simple Wizard", + # images.getWizTest1Bitmap()) wizard = wxWizard(self, self.ID_wiz, "Simple Wizard", images.getWizTest1Bitmap())