diff frontends/src/quick_frontend/quick_app.py @ 1397:96dd0ae1a850

quick_frontend (contact_list): rename QuickContactList.remove to QuickContactList.removeContact + remove the contact from _roster attribute (and not only from _cache)
author souliane <souliane@mailoo.org>
date Wed, 01 Apr 2015 22:07:28 +0200
parents 069ad98b360d
children 3265a2639182
line wrap: on
line diff
--- a/frontends/src/quick_frontend/quick_app.py	Mon Mar 30 10:26:26 2015 +0200
+++ b/frontends/src/quick_frontend/quick_app.py	Wed Apr 01 22:07:28 2015 +0200
@@ -543,7 +543,7 @@
         chat_widget = self.widgets.getWidget(quick_chat.QuickChat, room_jid, profile)
         if chat_widget:
             self.widgets.deleteWidget(chat_widget)
-        self.contact_lists[profile].remove(room_jid)
+        self.contact_lists[profile].removeContact(room_jid)
 
     def roomUserJoinedHandler(self, room_jid_s, user_nick, user_data, profile):
         """Called when an user joined a MUC room"""
@@ -643,7 +643,7 @@
 
     def contactDeletedHandler(self, jid_s, profile):
         target = jid.JID(jid_s)
-        self.contact_lists[profile].remove(target)
+        self.contact_lists[profile].removeContact(target, in_roster=True)
 
     def entityDataUpdatedHandler(self, entity_s, key, value, profile):
         entity = jid.JID(entity_s)