Browse Source

Rename signals to avoid name clashes

283
BTChip 10 years ago
parent
commit
0f1180ad95
  1. 8
      plugins/btchipwallet.py

8
plugins/btchipwallet.py

@ -511,8 +511,8 @@ class BTChipQTHandler:
def __init__(self, win):
self.win = win
self.win.connect(win, SIGNAL('btchip_done'), self.dialog_stop)
self.win.connect(win, SIGNAL('message_dialog'), self.message_dialog)
self.win.connect(win, SIGNAL('auth_dialog'), self.auth_dialog)
self.win.connect(win, SIGNAL('btchip_message_dialog'), self.message_dialog)
self.win.connect(win, SIGNAL('btchip_auth_dialog'), self.auth_dialog)
self.done = threading.Event()
def stop(self):
@ -520,12 +520,12 @@ class BTChipQTHandler:
def show_message(self, msg):
self.message = msg
self.win.emit(SIGNAL('message_dialog'))
self.win.emit(SIGNAL('btchip_message_dialog'))
def prompt_auth(self, msg):
self.done.clear()
self.message = msg
self.win.emit(SIGNAL('auth_dialog'))
self.win.emit(SIGNAL('btchip_auth_dialog'))
self.done.wait()
return self.response

Loading…
Cancel
Save