Bug #665149 - Do not ref window in e_restore_window()

This commit is contained in:
Milan Crha
2011-12-05 13:27:06 +01:00
parent 35e14a8d5f
commit f322d1a3bb

View File

@ -74,9 +74,6 @@ struct _WindowData {
static void
window_data_free (WindowData *data)
{
if (data->window != NULL)
g_object_unref (data->window);
if (data->settings != NULL)
g_object_unref (data->settings);
@ -341,7 +338,7 @@ e_restore_window (GtkWindow *window,
settings = g_settings_new_with_path (schema, settings_path);
data = g_slice_new0 (WindowData);
data->window = g_object_ref (window);
data->window = window;
data->settings = g_object_ref (settings);
data->flags = flags;