]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/Main.py
don't output -DwxUSE_GUI=0 in monolithic build, setup.h will take care of setting...
[wxWidgets.git] / wxPython / demo / Main.py
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()
 
 #---------------------------------------------------------------------------