# HG changeset patch # User souliane # Date 1380183263 -7200 # Node ID e2eff3c7ad02ca40cf0dc73de554a037e66c8d3b # Parent 8664a72442d634b14b790f5e3fe2ec85263ef13a 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 diff -r 8664a72442d6 -r e2eff3c7ad02 frontends/src/wix/main_window.py --- 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