]> git.saurik.com Git - wxWidgets.git/commitdiff
Use the default stdio window for the gui tools
authorRobin Dunn <robin@alldunn.com>
Tue, 27 Aug 2002 18:59:18 +0000 (18:59 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 27 Aug 2002 18:59:18 +0000 (18:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16818 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wxPython/lib/PyCrust/PyCrustApp.py
wxPython/wxPython/lib/PyCrust/PyShellApp.py
wxPython/wxPython/tools/XRCed/xrced.py

index 9e691ec6a792e91c7db2fcc6001df726064aca8a..de283bb9719b650dd2196f74f4eaa949a80c98bb 100755 (executable)
@@ -29,7 +29,7 @@ class App(wxApp):
 
 
 def main():
-    application = App(0)
+    application = App(1)
     application.MainLoop()
 
 if __name__ == '__main__':
index 0113b77c7b1d4e0888fa0e9963bfe404b3f83ba7..d38d855a5ebfc45c22af50236b0df381617fd9b1 100755 (executable)
@@ -29,7 +29,7 @@ class App(wxApp):
 
 
 def main():
-    application = App(0)
+    application = App(1)
     application.MainLoop()
 
 if __name__ == '__main__':
index 9c81402bd5b5733cc603ad0a7df28fdd442893fc..7d3c4459a5f44c4d555e984c16e48a29ad5f5a44 100644 (file)
@@ -1000,8 +1000,6 @@ class Frame(wxFrame):
         frame = self
         wxFrame.__init__(self, None, -1, '', pos, size)
         self.CreateStatusBar()
-        #progpath = os.path.split(__file__)[0]
-        #icon = wxIcon(os.path.join(progpath, 'xrced.ico'), wxBITMAP_TYPE_ICO)
         icon = wxEmptyIcon()
         icon.CopyFromBitmap(images.getIconBitmap())
         self.SetIcon(icon)
@@ -1924,7 +1922,7 @@ class App(wxApp):
         del conf
 
 def main():
-    app = App()
+    app = App(1)
     app.MainLoop()
     app.OnExit()