2.0: Remove deprecated API from ClutterSettings
This commit is contained in:
parent
e0aeb03b04
commit
0e1a651a1a
@ -83,8 +83,6 @@ enum
|
|||||||
{
|
{
|
||||||
PROP_0,
|
PROP_0,
|
||||||
|
|
||||||
PROP_BACKEND,
|
|
||||||
|
|
||||||
PROP_DOUBLE_CLICK_TIME,
|
PROP_DOUBLE_CLICK_TIME,
|
||||||
PROP_DOUBLE_CLICK_DISTANCE,
|
PROP_DOUBLE_CLICK_DISTANCE,
|
||||||
|
|
||||||
@ -268,10 +266,6 @@ clutter_settings_set_property (GObject *gobject,
|
|||||||
|
|
||||||
switch (prop_id)
|
switch (prop_id)
|
||||||
{
|
{
|
||||||
case PROP_BACKEND:
|
|
||||||
self->backend = g_value_get_object (value);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case PROP_DOUBLE_CLICK_TIME:
|
case PROP_DOUBLE_CLICK_TIME:
|
||||||
self->double_click_time = g_value_get_int (value);
|
self->double_click_time = g_value_get_int (value);
|
||||||
break;
|
break;
|
||||||
@ -417,24 +411,6 @@ clutter_settings_class_init (ClutterSettingsClass *klass)
|
|||||||
{
|
{
|
||||||
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
||||||
|
|
||||||
/**
|
|
||||||
* ClutterSettings:backend:
|
|
||||||
*
|
|
||||||
* A back pointer to the #ClutterBackend
|
|
||||||
*
|
|
||||||
* Since: 1.4
|
|
||||||
*
|
|
||||||
* Deprecated: 1.10
|
|
||||||
*/
|
|
||||||
obj_props[PROP_BACKEND] =
|
|
||||||
g_param_spec_object ("backend",
|
|
||||||
"Backend",
|
|
||||||
"A pointer to the backend",
|
|
||||||
CLUTTER_TYPE_BACKEND,
|
|
||||||
CLUTTER_PARAM_WRITABLE |
|
|
||||||
G_PARAM_DEPRECATED |
|
|
||||||
G_PARAM_CONSTRUCT_ONLY);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ClutterSettings:double-click-time:
|
* ClutterSettings:double-click-time:
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user