move the remove_listener to finalize instead of destroy, thanks to Jayaraj

2002-06-01  Havoc Pennington  <hp@pobox.com>

	* src/frames.c (meta_frames_finalize): move the remove_listener
	to finalize instead of destroy, thanks to Jayaraj for tracking
	down the bug.
This commit is contained in:
Havoc Pennington 2002-06-02 00:24:31 +00:00 committed by Havoc Pennington
parent d0e109f96c
commit d5bcea27e3
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2002-06-01 Havoc Pennington <hp@pobox.com>
* src/frames.c (meta_frames_finalize): move the remove_listener
to finalize instead of destroy, thanks to Jayaraj for tracking
down the bug.
2002-06-01 Havoc Pennington <hp@pobox.com>
* src/session.c: add some missing \n

View File

@ -205,8 +205,6 @@ meta_frames_destroy (GtkObject *object)
MetaFrames *frames;
frames = META_FRAMES (object);
meta_prefs_remove_listener (font_changed_callback, frames);
clear_tip (frames);
@ -239,6 +237,8 @@ meta_frames_finalize (GObject *object)
frames = META_FRAMES (object);
meta_prefs_remove_listener (font_changed_callback, frames);
g_hash_table_destroy (frames->text_heights);
g_assert (g_hash_table_size (frames->frames) == 0);