mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
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
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user