From 8734c5f2cbaaaca18fbafa3b65a336e8770813c0 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sun, 27 Nov 2005 12:42:42 +0000 Subject: [PATCH] SIGN_IN --> SIGNED_IN --- src/common/connection.py | 2 +- src/gajim.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/connection.py b/src/common/connection.py index 0deca3dc0..9e32d3828 100644 --- a/src/common/connection.py +++ b/src/common/connection.py @@ -1761,7 +1761,7 @@ class Connection: self.get_bookmarks() #Inform GUI we just signed in - self.dispatch('SIGN_IN', ()) + self.dispatch('SIGNED_IN', ()) def get_signed_msg(self, msg): signed = '' diff --git a/src/gajim.py b/src/gajim.py index 0bd3bba1f..3c2969a30 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -951,8 +951,8 @@ class Interface: def handle_event_vcard_not_published(self, account, array): dialogs.InformationDialog(_('vCard publication failed'), _('There was an error while publishing your personal information, try again later.')) - def handle_event_sign_in(self, account, empty): - # SIGN_IN event is emitted when we sign in + def handle_event_signed_in(self, account, empty): + # SIGNED_IN event is emitted when we sign in # join already open groupchats for acct in gajim.connections: @@ -1188,7 +1188,7 @@ class Interface: 'VCARD_PUBLISHED': self.handle_event_vcard_published, 'VCARD_NOT_PUBLISHED': self.handle_event_vcard_not_published, 'ASK_NEW_NICK': self.handle_event_ask_new_nick, - 'SIGN_IN': self.handle_event_sign_in, + 'SIGNED_IN': self.handle_event_signed_in, } def exec_event(self, account):