- More consistency updates

This commit is contained in:
ccremers
2006-08-08 17:07:15 +00:00
parent e14d165816
commit 529892e640
13 changed files with 6 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ def parseArgs():
class MySplashScreen(wx.SplashScreen):
def __init__(self):
bmp = wx.Image(os.path.join("images","scyther-splash.png")).ConvertToBitmap()
bmp = wx.Image(os.path.join("Images","scyther-splash.png")).ConvertToBitmap()
wx.SplashScreen.__init__(self, bmp,
wx.SPLASH_CENTRE_ON_SCREEN | wx.SPLASH_TIMEOUT,
5000, None, -1)
@@ -101,6 +101,10 @@ class ScytherApp(wx.App):
def OnExit(self):
""" Tear down """
#---------------------------------------------------------------------------
if __name__ == '__main__':
scythergui = ScytherApp()
scythergui.MainLoop()