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 /module/gui | |
parent | config input valadiation (diff) | |
download | pyload-4c14f8f936caffff089e157be647f847b104a5a5.tar.xz |
fixes #87
Diffstat (limited to 'module/gui')
-rw-r--r-- | module/gui/ConnectionManager.py | 2 |
1 files changed, 1 insertions, 1 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) |