Mercurial > libervia-backend
comparison frontends/src/wix/main_window.py @ 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 | 49587e170f53 |
children | 59c9a7ff903d |
comparison
equal
deleted
inserted
replaced
652:8664a72442d6 | 653:e2eff3c7ad02 |
---|---|
487 else: | 487 else: |
488 self.Show() | 488 self.Show() |
489 self.Raise() | 489 self.Raise() |
490 e.Skip() | 490 e.Skip() |
491 | 491 |
492 def chatStateReceived(self, from_jid_s, state, profile): | |
493 """Signal observer to display a contact chat state | |
494 @param from_jid_s: contact who sent his new state | |
495 @state: state | |
496 @profile: current profile | |
497 """ | |
498 print "TODO: chatStateReceived not implemented yet" | |
499 pass |