stage: Fix the user-resizable property enumeration id
This commit is contained in:
parent
59a9786942
commit
c87bfef1eb
@ -134,7 +134,7 @@ enum
|
|||||||
PROP_CURSOR_VISIBLE,
|
PROP_CURSOR_VISIBLE,
|
||||||
PROP_PERSPECTIVE,
|
PROP_PERSPECTIVE,
|
||||||
PROP_TITLE,
|
PROP_TITLE,
|
||||||
PROP_USER_RESIZE,
|
PROP_USER_RESIZABLE,
|
||||||
PROP_USE_FOG,
|
PROP_USE_FOG,
|
||||||
PROP_FOG,
|
PROP_FOG,
|
||||||
PROP_USE_ALPHA,
|
PROP_USE_ALPHA,
|
||||||
@ -828,7 +828,7 @@ clutter_stage_set_property (GObject *object,
|
|||||||
clutter_stage_set_title (stage, g_value_get_string (value));
|
clutter_stage_set_title (stage, g_value_get_string (value));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PROP_USER_RESIZE:
|
case PROP_USER_RESIZABLE:
|
||||||
clutter_stage_set_user_resizable (stage, g_value_get_boolean (value));
|
clutter_stage_set_user_resizable (stage, g_value_get_boolean (value));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -892,7 +892,7 @@ clutter_stage_get_property (GObject *gobject,
|
|||||||
g_value_set_string (value, priv->title);
|
g_value_set_string (value, priv->title);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PROP_USER_RESIZE:
|
case PROP_USER_RESIZABLE:
|
||||||
g_value_set_boolean (value, priv->is_user_resizable);
|
g_value_set_boolean (value, priv->is_user_resizable);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -1068,7 +1068,7 @@ clutter_stage_class_init (ClutterStageClass *klass)
|
|||||||
FALSE,
|
FALSE,
|
||||||
CLUTTER_PARAM_READWRITE);
|
CLUTTER_PARAM_READWRITE);
|
||||||
g_object_class_install_property (gobject_class,
|
g_object_class_install_property (gobject_class,
|
||||||
PROP_USER_RESIZE,
|
PROP_USER_RESIZABLE,
|
||||||
pspec);
|
pspec);
|
||||||
/**
|
/**
|
||||||
* ClutterStage:color:
|
* ClutterStage:color:
|
||||||
|
Loading…
Reference in New Issue
Block a user