changeset 653:e2eff3c7ad02

wix: bug fix at startup when the method chatStateReceived doesn't exist TODO: implementation for displaying the states on the chat window and sending "composing" states
author souliane <souliane@mailoo.org>
date Thu, 26 Sep 2013 10:14:23 +0200
parents 8664a72442d6
children 5c5cf5bca240
files frontends/src/wix/main_window.py
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/frontends/src/wix/main_window.py	Fri Oct 04 12:22:51 2013 +0200
+++ b/frontends/src/wix/main_window.py	Thu Sep 26 10:14:23 2013 +0200
@@ -489,3 +489,11 @@
             self.Raise()
         e.Skip()
 
+    def chatStateReceived(self, from_jid_s, state, profile):
+        """Signal observer to display a contact chat state
+        @param from_jid_s: contact who sent his new state
+        @state: state
+        @profile: current profile
+        """
+        print "TODO: chatStateReceived not implemented yet"
+        pass