summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu.duponchelle@epitech.eu>2013-06-27 23:33:21 +0200
committerThibault Saunier <thibault.saunier@collabora.com>2013-07-12 18:17:00 -0400
commite0b89ce69182522b27232455230e4dd04e42dcb8 (patch)
tree9b6e0dde1249d8dcf63b8f67f22c74d5dc0927c1
parentcc09d0325359a000ea9f4730eeb17eac8d225b6b (diff)
framepositionner: fix messup with propname enum.
-rw-r--r--ges/gstframepositionner.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ges/gstframepositionner.c b/ges/gstframepositionner.c
index 1204515..97496da 100644
--- a/ges/gstframepositionner.c
+++ b/ges/gstframepositionner.c
@@ -93,7 +93,7 @@ gst_frame_positionner_class_init (GstFramePositionnerClass * klass)
*
* The desired x position for the stream.
*/
- g_object_class_install_property (gobject_class, PROP_ALPHA,
+ g_object_class_install_property (gobject_class, PROP_POSX,
g_param_spec_int ("posx", "posx", "x position of the stream",
G_MININT, G_MAXINT, 0, G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));
@@ -102,7 +102,7 @@ gst_frame_positionner_class_init (GstFramePositionnerClass * klass)
*
* The desired y position for the stream.
*/
- g_object_class_install_property (gobject_class, PROP_ALPHA,
+ g_object_class_install_property (gobject_class, PROP_POSY,
g_param_spec_int ("posy", "posy", "y position of the stream",
G_MININT, G_MAXINT, 0, G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));