summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLionel Landwerlin <lionel.g.landwerlin@intel.com>2015-01-12 18:14:16 +0000
committerLionel Landwerlin <lionel.g.landwerlin@intel.com>2015-01-15 10:09:12 +0000
commitdd82108e032c0d5807ad7efc2c654e3ff0e2d806 (patch)
tree75d78a4c6f70eea8470359c38be4544e55b4940d
parent549e4f48277df6fb167f30d4d85ffec0b9776ddf (diff)
downloadclutter-gst-dd82108e032c0d5807ad7efc2c654e3ff0e2d806.tar.gz
player: remove deprecated flag from properties
-rw-r--r--clutter-gst/clutter-gst-player.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/clutter-gst/clutter-gst-player.c b/clutter-gst/clutter-gst-player.c
index cca31bc..d2ac620 100644
--- a/clutter-gst/clutter-gst-player.c
+++ b/clutter-gst/clutter-gst-player.c
@@ -79,8 +79,7 @@ clutter_gst_player_default_init (ClutterGstPlayerIface *iface)
"Playing",
"Whether the player is playing",
FALSE,
- CLUTTER_GST_PARAM_READWRITE |
- G_PARAM_DEPRECATED);
+ CLUTTER_GST_PARAM_READWRITE);
g_object_interface_install_property (iface, pspec);
/**
@@ -93,8 +92,7 @@ clutter_gst_player_default_init (ClutterGstPlayerIface *iface)
"Audio Volume",
"The volume of the audio",
0.0, 1.0, 0.5,
- CLUTTER_GST_PARAM_READWRITE |
- G_PARAM_DEPRECATED);
+ CLUTTER_GST_PARAM_READWRITE);
g_object_interface_install_property (iface, pspec);
/**