diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-01-13 14:20:33 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-01-13 14:20:33 -0300 |
commit | 24e7c4f505d92164187c8afe038b24c67e2bdedc (patch) | |
tree | 64b8ec7eda2b018dc9f2cb97c03a0c369e81c144 /src/leap/bitmask/gui/mainwindow.py | |
parent | 5b07c229c6dd507e910f1086af5706b3710f6127 (diff) |
Use set_status for all messages.
Remove set_login_status since it's a remaining code after split the
login in a separated widget.
[Closes #4942]
Diffstat (limited to 'src/leap/bitmask/gui/mainwindow.py')
-rw-r--r-- | src/leap/bitmask/gui/mainwindow.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py index 83aa47a9..ddaa085c 100644 --- a/src/leap/bitmask/gui/mainwindow.py +++ b/src/leap/bitmask/gui/mainwindow.py @@ -1754,9 +1754,8 @@ class MainWindow(QtGui.QMainWindow): self._mail_status.mail_state_disabled() else: - self._login_widget.set_login_status( - self.tr("Something went wrong with the logout."), - error=True) + self._login_widget.set_status( + self.tr("Something went wrong with the logout.")) def _intermediate_stage(self, data): # TODO this method name is confusing as hell. |