Mercurial > hg > Feedworm
diff feedworm-gui.py @ 24:6b5ceffabe49
MainWindowController -> MainWindow
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Thu, 29 Apr 2010 05:43:57 +0200 |
parents | 42a225be7e56 |
children | 74b8c9a9d5de |
line wrap: on
line diff
--- a/feedworm-gui.py Thu Apr 29 05:41:52 2010 +0200 +++ b/feedworm-gui.py Thu Apr 29 05:43:57 2010 +0200 @@ -1,5 +1,5 @@ -from MainWindowController import MainWindowController +from MainWindow import MainWindow from PyQt4 import QtGui import sys from util import configureLogging, createSession @@ -9,6 +9,6 @@ session = createSession() app = QtGui.QApplication(sys.argv) - mainWindowController = MainWindowController(session) - mainWindowController.show() + mainWindow = MainWindow(session) + mainWindow.show() sys.exit(app.exec_())