[PyCrust-cvs] PyCrust PyAlaMode.py,1.1,1.2
Brought to you by:
pobrien
|
From: <po...@us...> - 2003-03-29 05:10:20
|
Update of /cvsroot/pycrust/PyCrust
In directory sc8-pr-cvs1:/tmp/cvs-serv22368
Modified Files:
PyAlaMode.py
Log Message:
Minor tweak
Index: PyAlaMode.py
===================================================================
RCS file: /cvsroot/pycrust/PyCrust/PyAlaMode.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PyAlaMode.py 29 Mar 2003 02:42:04 -0000 1.1
--- PyAlaMode.py 29 Mar 2003 05:10:12 -0000 1.2
***************
*** 22,28 ****
"""PyAlaMode standalone application."""
! def __init__(self, flag, filename=None):
self.filename = filename
! wx.App.__init__(self, flag)
def OnInit(self):
--- 22,28 ----
"""PyAlaMode standalone application."""
! def __init__(self, filename=None):
self.filename = filename
! wx.App.__init__(self, redirect=False)
def OnInit(self):
***************
*** 35,39 ****
def main(filename=None):
! app = App(False, filename)
app.MainLoop()
--- 35,39 ----
def main(filename=None):
! app = App(filename)
app.MainLoop()
|