summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/mail_status.py
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2014-04-16 14:48:53 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2014-04-17 12:12:26 -0300
commitdef537bb5a78e046a75a9e13ea75449eec2b34c8 (patch)
treecfa00c026309f47f1ec6bc2e667639a23b20aa96 /src/leap/bitmask/gui/mail_status.py
parentdcfaeea8c892ecb962080a1fbdc456bdfe851eea (diff)
Use Slot decorator instead of SLOT docstring.
Diffstat (limited to 'src/leap/bitmask/gui/mail_status.py')
-rw-r--r--src/leap/bitmask/gui/mail_status.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/leap/bitmask/gui/mail_status.py b/src/leap/bitmask/gui/mail_status.py
index 44a138e2..059e5d68 100644
--- a/src/leap/bitmask/gui/mail_status.py
+++ b/src/leap/bitmask/gui/mail_status.py
@@ -184,9 +184,9 @@ class MailStatusWidget(QtGui.QWidget):
leap_assert_type(action_mail_status, QtGui.QAction)
self._action_mail_status = action_mail_status
+ @QtCore.Slot()
def set_soledad_failed(self):
"""
- SLOT
TRIGGER:
SoledadBootstrapper.soledad_failed
@@ -195,9 +195,9 @@ class MailStatusWidget(QtGui.QWidget):
msg = self.tr("There was an unexpected problem with Soledad.")
self._set_mail_status(msg, ready=-1)
+ @QtCore.Slot()
def set_soledad_invalid_auth_token(self):
"""
- SLOT
TRIGGER:
SoledadBootstrapper.soledad_invalid_token
@@ -250,9 +250,9 @@ class MailStatusWidget(QtGui.QWidget):
"""
self._soledad_event.emit(req)
+ @QtCore.Slot(object)
def _mail_handle_soledad_events_slot(self, req):
"""
- SLOT
TRIGGER: _mail_handle_soledad_events
Reacts to an Soledad event
@@ -284,9 +284,9 @@ class MailStatusWidget(QtGui.QWidget):
"""
self._keymanager_event.emit(req)
+ @QtCore.Slot(object)
def _mail_handle_keymanager_events_slot(self, req):
"""
- SLOT
TRIGGER: _mail_handle_keymanager_events
Reacts to an KeyManager event
@@ -330,9 +330,9 @@ class MailStatusWidget(QtGui.QWidget):
"""
self._smtp_event.emit(req)
+ @QtCore.Slot(object)
def _mail_handle_smtp_events_slot(self, req):
"""
- SLOT
TRIGGER: _mail_handle_smtp_events
Reacts to an SMTP event
@@ -364,9 +364,9 @@ class MailStatusWidget(QtGui.QWidget):
"""
self._imap_event.emit(req)
+ @QtCore.Slot(object)
def _mail_handle_imap_events_slot(self, req):
"""
- SLOT
TRIGGER: _mail_handle_imap_events
Reacts to an IMAP event