summaryrefslogtreecommitdiff
path: root/nephilim/nephilim_app.py
diff options
context:
space:
mode:
authorAnton Khirnov <wyskas@gmail.com>2009-06-21 07:03:17 +0200
committerAnton Khirnov <wyskas@gmail.com>2009-06-21 07:03:17 +0200
commitc8ff00c7c0d77fa5a17a5d36b3989340899bc72b (patch)
tree0222b2a46d5e2c5151b5886b74c8d4549335c31e /nephilim/nephilim_app.py
parentb89b59c0cdcd44fb5222d049d9ebfb1ff72b04f5 (diff)
add mpclient argument to winMain constructor.
Diffstat (limited to 'nephilim/nephilim_app.py')
-rw-r--r--nephilim/nephilim_app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nephilim/nephilim_app.py b/nephilim/nephilim_app.py
index b3f00be..2c4f421 100644
--- a/nephilim/nephilim_app.py
+++ b/nephilim/nephilim_app.py
@@ -53,11 +53,11 @@ class NephilimApp(QtGui.QApplication):
self.settings = QtCore.QSettings()
#init main window
- self.main_win = winMain()
+ self.main_win = winMain(self.mpclient)
#init plugins
show_settings = False # are there new plugins?
- self.plugins = plugins.Plugins(self.main_win, self.mpclient)
+ self.plugins = plugins.Plugins(self.main_win, self.mpclient)
for plugin in self.plugins.plugins():
if self.settings.value(plugin.name + '/load') == None:
show_settings = True