]> git.saurik.com Git - wxWidgets.git/commitdiff
some cleanup
authorRobin Dunn <robin@alldunn.com>
Sat, 7 Aug 2004 03:43:00 +0000 (03:43 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 7 Aug 2004 03:43:00 +0000 (03:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28689 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/HtmlWindow.py
wxPython/demo/Main.py

index 9dac81120f5dcda7a9e713958b8954985b4b3ee0..633a9ccb59d7401dee64594855f6404c312e3e77 100644 (file)
@@ -193,7 +193,6 @@ class TestHtmlPanel(wx.Panel):
 
 def runTest(frame, nb, log):
     win = TestHtmlPanel(nb, frame, log)
-    print wx.Window_FindFocus()
     return win
 
 
index 852a27adada4de35dc3f6fd6b18b1752289da8f9..69682c69fcc21e8951cca329e6e0510e4358131d 100644 (file)
@@ -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()
 
 #---------------------------------------------------------------------------