summaryrefslogtreecommitdiff
path: root/nephilim/nephilim_app.py
diff options
context:
space:
mode:
Diffstat (limited to 'nephilim/nephilim_app.py')
-rw-r--r--nephilim/nephilim_app.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/nephilim/nephilim_app.py b/nephilim/nephilim_app.py
index 64a6fd1..da387a7 100644
--- a/nephilim/nephilim_app.py
+++ b/nephilim/nephilim_app.py
@@ -51,12 +51,15 @@ class NephilimApp(QtGui.QApplication):
self.setOrganizationName(ORGNAME)
self.setWindowIcon(QtGui.QIcon(appIcon))
+ def __str__(self):
+ return APPNAME
+
def exec_(self):
#init MPD layer
- self.mpclient = MPClient()
+ self.mpclient = MPClient(self)
#init settings
- self.settings = QtCore.QSettings()
+ self.settings = QtCore.QSettings(self)
#init connection window
self._connect_win = ConnectWidget()