places sidebar: Always chain up in finalize

The GtkSidebarRow class was forgetting to do this. The visible
symptom of this in valgrind is that you notice GObject data
being leaked.
This commit is contained in:
Matthias Clasen 2015-07-21 19:51:50 -04:00
parent 3e6177d2dd
commit 9418712782

View File

@ -298,6 +298,8 @@ gtk_sidebar_row_finalize (GObject *object)
g_clear_object (&self->drive);
g_clear_object (&self->volume);
g_clear_object (&self->mount);
G_OBJECT_CLASS (gtk_sidebar_row_parent_class)->finalize (object);
}
static void