stage/impl: Fix variable naming consistency

Changed to follow convention in mutter.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2016>
This commit is contained in:
Jonas Ådahl 2021-09-20 09:46:56 +02:00 committed by Marge Bot
parent d96e458d93
commit 6aebd5407d

View File

@ -841,9 +841,9 @@ meta_stage_impl_set_property (GObject *gobject,
static void
meta_stage_impl_class_init (MetaStageImplClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
GObjectClass *object_class = G_OBJECT_CLASS (klass);
gobject_class->set_property = meta_stage_impl_set_property;
object_class->set_property = meta_stage_impl_set_property;
obj_props[PROP_WRAPPER] =
g_param_spec_object ("wrapper", NULL, NULL,
@ -857,7 +857,7 @@ meta_stage_impl_class_init (MetaStageImplClass *klass)
G_PARAM_WRITABLE |
G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS);
g_object_class_install_properties (gobject_class, N_PROPS, obj_props);
g_object_class_install_properties (object_class, N_PROPS, obj_props);
}
static void