diff options
author | mkaay <mkaay@mkaay.de> | 2010-03-30 14:16:29 +0200 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-03-30 14:16:29 +0200 |
commit | 4c14f8f936caffff089e157be647f847b104a5a5 (patch) | |
tree | 3a865fd278c4a91b55f9957844cdd5d20dc9638d | |
parent | config input valadiation (diff) | |
download | pyload-4c14f8f936caffff089e157be647f847b104a5a5.tar.xz |
fixes #87
-rw-r--r-- | module/gui/ConnectionManager.py | 2 | ||||
-rwxr-xr-x | pyLoadGui.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/module/gui/ConnectionManager.py b/module/gui/ConnectionManager.py index 29e95f637..47d287967 100644 --- a/module/gui/ConnectionManager.py +++ b/module/gui/ConnectionManager.py @@ -57,7 +57,7 @@ class ConnectionManager(QWidget): self.defaultStates = {} def connectSignals(self): - self.connect(self, SIGNAL("setConnections(connections)"), self.setConnections) + self.connect(self, SIGNAL("setConnections"), self.setConnections) self.connect(self.new, SIGNAL("clicked()"), self.slotNew) self.connect(self.editb, SIGNAL("clicked()"), self.slotEdit) self.connect(self.remove, SIGNAL("clicked()"), self.slotRemove) diff --git a/pyLoadGui.py b/pyLoadGui.py index 045aeb1a4..782c778e5 100755 --- a/pyLoadGui.py +++ b/pyLoadGui.py @@ -426,7 +426,7 @@ class main(QObject): """ self.parser.loadData() conns = self.getConnections() - self.connWindow.emit(SIGNAL("setConnections(connections)"), conns) + self.connWindow.emit(SIGNAL("setConnections"), conns) for conn in conns: if conn["default"]: return conn |