compositor-view: Chain up finalize()

The chaining up to the GObject finalize() method was missing, fix that.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2991>
This commit is contained in:
Jonas Ådahl 2023-05-09 12:17:57 +02:00 committed by Marge Bot
parent 921f52dfc0
commit 802c1baec7

View File

@ -170,6 +170,8 @@ meta_compositor_view_finalize (GObject *object)
meta_compositor_view_get_instance_private (compositor_view);
g_clear_weak_pointer (&priv->top_window_actor);
G_OBJECT_CLASS (meta_compositor_view_parent_class)->finalize (object);
}
static void