gtk/columnviewcolumn: Fix id leak

Add a free that was missing in commit 3e2b962a
This commit is contained in:
Khalid Abu Shawarib 2023-05-05 22:18:16 +00:00
parent 72016341c6
commit 1cf3f492b8

View File

@ -119,6 +119,7 @@ gtk_column_view_column_dispose (GObject *object)
g_clear_object (&self->sorter);
g_clear_pointer (&self->title, g_free);
g_clear_object (&self->menu);
g_clear_pointer (&self->id, g_free);
G_OBJECT_CLASS (gtk_column_view_column_parent_class)->dispose (object);
}