effects: implement the TrackParseLaunch get_property method properly
authorMathieu Duponchelle <seeed@laposte.net>
Tue, 21 Jun 2011 18:35:47 +0000 (20:35 +0200)
committerThibault Saunier <thibault.saunier@collabora.com>
Fri, 8 Jul 2011 01:27:37 +0000 (21:27 -0400)
ges/ges-track-parse-launch-effect.c

index f297b41..d7a90fa 100644 (file)
@@ -53,7 +53,13 @@ static void
 ges_track_parse_launch_effect_get_property (GObject * object,
     guint property_id, GValue * value, GParamSpec * pspec)
 {
+  GESTrackParseLaunchEffectPrivate *priv =
+      GES_TRACK_PARSE_LAUNCH_EFFECT (object)->priv;
+
   switch (property_id) {
+    case PROP_BIN_DESCRIPTION:
+      g_value_set_string (value, priv->bin_description);
+      break;
     default:
       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
   }