Move a call

This commit is contained in:
Matthias Clasen 2006-07-27 14:13:18 +00:00
parent c022dbfc1e
commit d9c4801d94
3 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2006-07-27 Matthias Clasen <mclasen@redhat.com>
* gtk/gtksettings.c (gtk_settings_finalize): Move the
_gtk_rc_context_destroy call to the right spot. (#348096,
Chris Wilson)
2006-07-24 Richard Hult <richard@imendio.com>
* gdk/quartz/gdkevents-quartz.c (gdk_screen_get_setting): Implement

View File

@ -1,3 +1,9 @@
2006-07-27 Matthias Clasen <mclasen@redhat.com>
* gtk/gtksettings.c (gtk_settings_finalize): Move the
_gtk_rc_context_destroy call to the right spot. (#348096,
Chris Wilson)
2006-07-24 Richard Hult <richard@imendio.com>
* gdk/quartz/gdkevents-quartz.c (gdk_screen_get_setting): Implement

View File

@ -520,11 +520,11 @@ gtk_settings_finalize (GObject *object)
object_list = g_slist_remove (object_list, settings);
_gtk_rc_context_destroy (settings);
for (i = 0; i < class_n_properties; i++)
g_value_unset (&settings->property_values[i].value);
g_free (settings->property_values);
_gtk_rc_context_destroy (settings);
g_datalist_clear (&settings->queued_settings);