tSIGNALs should use the correct syntax for names of "foo()", not "foo" - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit ab55b7d7cb70ab6bf654c0485e355ce2ba355c47 DIR parent 9c0bb13366bad67da4c5beb8d2c50d8eb4f702f0 HTML Author: Amir Taaki <genjix@riseup.net> Date: Fri, 29 Jun 2012 02:35:26 +0200 SIGNALs should use the correct syntax for names of "foo()", not "foo" Diffstat: M lib/gui_lite.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/lib/gui_lite.py b/lib/gui_lite.py t@@ -266,13 +266,13 @@ class MiniDriver(QObject): self.state = None self.initializing() - self.connect(self, SIGNAL("updatesignal"), self.update) + self.connect(self, SIGNAL("updatesignal()"), self.update) # This is a hack to workaround that Qt does not like changing the # window properties from this other thread before the runloop has # been called from. def update_callback(self): - self.emit(SIGNAL("updatesignal")) + self.emit(SIGNAL("updatesignal()")) def update(self): if not self.wallet.interface: