From 4c14f8f936caffff089e157be647f847b104a5a5 Mon Sep 17 00:00:00 2001 From: mkaay Date: Tue, 30 Mar 2010 14:16:29 +0200 Subject: fixes #87 --- module/gui/ConnectionManager.py | 2 +- 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 -- cgit v1.2.3