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:
parent
d96e458d93
commit
6aebd5407d
@ -841,9 +841,9 @@ meta_stage_impl_set_property (GObject *gobject,
|
|||||||
static void
|
static void
|
||||||
meta_stage_impl_class_init (MetaStageImplClass *klass)
|
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] =
|
obj_props[PROP_WRAPPER] =
|
||||||
g_param_spec_object ("wrapper", NULL, NULL,
|
g_param_spec_object ("wrapper", NULL, NULL,
|
||||||
@ -857,7 +857,7 @@ meta_stage_impl_class_init (MetaStageImplClass *klass)
|
|||||||
G_PARAM_WRITABLE |
|
G_PARAM_WRITABLE |
|
||||||
G_PARAM_CONSTRUCT_ONLY |
|
G_PARAM_CONSTRUCT_ONLY |
|
||||||
G_PARAM_STATIC_STRINGS);
|
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
|
static void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user