Changeset 9324 for trunk/src/gajim.py
- Timestamp:
- 02/13/08 08:14:06 (9 months ago)
- Files:
-
- 1 modified
-
trunk/src/gajim.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gajim.py
r9319 r9324 534 534 # this prevents from getting the roster items as 'just signed in' 535 535 # contacts. 30 seconds should be enough time 536 gobject.timeout_add (30000, self.unblock_signed_in_notifications, account)536 gobject.timeout_add_seconds(30, self.unblock_signed_in_notifications, account) 537 537 # sensitivity for this menuitem 538 538 model[self.roster.status_message_menuitem_iter][3] = True … … 649 649 if contact1.jid in gajim.to_be_removed[account]: 650 650 gajim.to_be_removed[account].remove(contact1.jid) 651 gobject.timeout_add (5000, self.roster.remove_newly_added,651 gobject.timeout_add_seconds(5, self.roster.remove_newly_added, 652 652 contact1.jid, account) 653 653 elif old_show > 1 and new_show == 0 and gajim.connections[account].\ … … 658 658 gajim.newly_added[account].remove(contact1.jid) 659 659 self.roster.draw_contact(contact1.jid, account) 660 gobject.timeout_add (5000, self.roster.really_remove_contact,660 gobject.timeout_add_seconds(5, self.roster.really_remove_contact, 661 661 contact1, account) 662 662 contact1.show = array[1] … … 685 685 account_ji = account + '/' + ji 686 686 gajim.block_signed_in_notifications[account_ji] = True 687 gobject.timeout_add (30000, self.unblock_signed_in_notifications,687 gobject.timeout_add_seconds(30, self.unblock_signed_in_notifications, 688 688 account_ji) 689 689 locations = (self.instances, self.instances[account]) … … 2949 2949 gobject.timeout_add(200, self.process_connections) 2950 2950 else: 2951 gobject.timeout_add (2000, self.process_connections)2952 gobject.timeout_add (10000, self.read_sleepy)2951 gobject.timeout_add_seconds(2, self.process_connections) 2952 gobject.timeout_add_seconds(10, self.read_sleepy) 2953 2953 2954 2954 if __name__ == '__main__':
