diff --git a/wxPython/demo/HtmlWindow.py b/wxPython/demo/HtmlWindow.py
index 9dac81120f..633a9ccb59 100644
--- a/wxPython/demo/HtmlWindow.py
+++ b/wxPython/demo/HtmlWindow.py
@@ -193,7 +193,6 @@ class TestHtmlPanel(wx.Panel):
def runTest(frame, nb, log):
win = TestHtmlPanel(nb, frame, log)
- print wx.Window_FindFocus()
return win
diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py
index 852a27adad..69682c69fc 100644
--- a/wxPython/demo/Main.py
+++ b/wxPython/demo/Main.py
@@ -52,7 +52,7 @@ _treeList = [
]),
# managed windows == things with a (optional) caption you can close
- ('Base Frames and Dialogs', [
+ ('Frames and Dialogs', [
'Dialog',
'Frame',
'MDIWindows',
@@ -1607,7 +1607,7 @@ def main():
os.chdir(demoPath)
except:
pass
- app = MyApp(0) ##wx.Platform == "__WXMAC__")
+ app = MyApp(False)
app.MainLoop()
#---------------------------------------------------------------------------