Changeset 8989
- Timestamp:
- 11/16/07 20:46:56 (10 months ago)
- Location:
- branches/gajim_0.11.2
- Files:
-
- 2 modified
-
data/glade/single_message_window.glade (modified) (2 diffs)
-
src/dialogs.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.2/data/glade/single_message_window.glade
r6265 r8989 22 22 <signal name="key_press_event" handler="on_single_message_window_key_press_event" last_modification_time="Tue, 05 Jul 2005 22:02:15 GMT"/> 23 23 <signal name="delete_event" handler="on_single_message_window_delete_event" last_modification_time="Mon, 17 Oct 2005 15:32:50 GMT"/> 24 <signal name="destroy" handler="on_single_message_window_destroy"/> 24 25 25 26 <child> … … 545 546 </child> 546 547 </widget> 547 548 548 </glade-interface> -
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):
