mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
SIGNALs should use the correct syntax for names of "foo()", not "foo"
This commit is contained in:
parent
9c0bb13366
commit
ab55b7d7cb
1 changed files with 2 additions and 2 deletions
|
@ -266,13 +266,13 @@ class MiniDriver(QObject):
|
||||||
self.state = None
|
self.state = None
|
||||||
|
|
||||||
self.initializing()
|
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
|
# This is a hack to workaround that Qt does not like changing the
|
||||||
# window properties from this other thread before the runloop has
|
# window properties from this other thread before the runloop has
|
||||||
# been called from.
|
# been called from.
|
||||||
def update_callback(self):
|
def update_callback(self):
|
||||||
self.emit(SIGNAL("updatesignal"))
|
self.emit(SIGNAL("updatesignal()"))
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
if not self.wallet.interface:
|
if not self.wallet.interface:
|
||||||
|
|
Loading…
Add table
Reference in a new issue