diff options
Diffstat (limited to 'module')
-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) |