Changeset 9848 for trunk/src/message_window.py
- Timestamp:
- 06/27/08 01:37:24 (5 months ago)
- Files:
-
- 1 modified
-
trunk/src/message_window.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/message_window.py
r9847 r9848 446 446 jid = gajim.get_jid_without_resource(fjid) 447 447 448 fctrl s = self.get_controls(fjid, ctrl.account)449 bctrl s = self.get_controls(jid, ctrl.account)448 fctrl = self.get_control(fjid, ctrl.account) 449 bctrl = self.get_control(jid, ctrl.account) 450 450 # keep last_message_time around unless this was our last control with 451 451 # that jid 452 if not fctrl s and not bctrls:452 if not fctrl and not bctrl: 453 453 del gajim.last_message_time[ctrl.account][fjid] 454 454
