summaryrefslogtreecommitdiff
path: root/src/leap/gui/mainwindow.py
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-07-25 15:44:54 -0300
committerTomás Touceda <chiiph@leap.se>2013-07-25 15:44:54 -0300
commit3d4819112c609ea8103b66f636a946e0a26b33f6 (patch)
treed713905047712f382016e2a310779f142ac546ec /src/leap/gui/mainwindow.py
parentc715e5fbd3f48f9a3555be659ccfe859f97c9d7c (diff)
parent139e699238515204c498c9ce9377289ed3a4b097 (diff)
Merge remote-tracking branch 'drebs/bug/3261-fix-events-callback' into develop
Diffstat (limited to 'src/leap/gui/mainwindow.py')
-rw-r--r--src/leap/gui/mainwindow.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py
index 1a82d600..1d0d3120 100644
--- a/src/leap/gui/mainwindow.py
+++ b/src/leap/gui/mainwindow.py
@@ -119,10 +119,10 @@ class MainWindow(QtGui.QMainWindow):
# register leap events
register(signal=proto.UPDATER_NEW_UPDATES,
callback=self._new_updates_available,
- reqcbk=lambda resp: None) # make rpc call async
+ reqcbk=lambda req, resp: None) # make rpc call async
register(signal=proto.RAISE_WINDOW,
callback=self._on_raise_window_event,
- reqcbk=lambda resp: None) # make rpc call async
+ reqcbk=lambda req, resp: None) # make rpc call async
self._quit_callback = quit_callback