Changeset 8989 for branches/gajim_0.11.2/src/dialogs.py
- Timestamp:
- 11/16/07 20:46:56 (13 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11.2/src/dialogs.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.2/src/dialogs.py
r8955 r8989 1482 1482 or 'receive'. 1483 1483 ''' 1484 # Keep a reference on windows so garbage collector don't restroy them 1485 instances = [] 1484 1486 def __init__(self, account, to = '', action = '', from_whom = '', 1485 1487 subject = '', message = '', resource = ''): 1488 self.instances.append(self) 1486 1489 self.account = account 1487 1490 self.action = action … … 1581 1584 gajim.config.get('single-msg-height')) 1582 1585 self.window.show_all() 1586 1587 def on_single_message_window_destroy(self, widget): 1588 self.instances.remove(self) 1583 1589 1584 1590 def set_cursor_to_end(self):
