GESTimelineTextOverlay inherits from GESTimelineOverlay
authorBrandon Lewis <brandon@collabora.co.uk>
Thu, 1 Jul 2010 10:35:31 +0000 (12:35 +0200)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Fri, 9 Jul 2010 11:21:15 +0000 (13:21 +0200)
ges/ges-timeline-text-overlay.c
ges/ges-timeline-text-overlay.h

index 38fb89a..239012d 100644 (file)
@@ -35,7 +35,7 @@
 #include <string.h>
 
 G_DEFINE_TYPE (GESTimelineTextOverlay, ges_tl_text_overlay,
-    GES_TYPE_TIMELINE_OBJECT);
+    GES_TYPE_TIMELINE_OVERLAY);
 
 #define DEFAULT_PROP_TEXT ""
 #define DEFAULT_PROP_FONT_DESC DEFAULT_FONT_DESC
index 52a3475..6c89fc2 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
-#ifndef _GES_TL_OVERLAY
-#define _GES_TL_OVERLAY
+#ifndef _GES_TIMELINE_TEXT_OVERLAY
+#define _GES_TIMELINE_TEXT_OVERLAY
 
 #include <glib-object.h>
 #include <ges/ges-types.h>
-#include <ges/ges-timeline-object.h>
+#include <ges/ges-timeline-overlay.h>
 #include <ges/ges-track.h>
 
 G_BEGIN_DECLS
@@ -52,7 +52,7 @@ G_BEGIN_DECLS
  */
 
 struct _GESTimelineTextOverlay {
-  GESTimelineObject parent;
+  GESTimelineOverlay parent;
 
   /*< private >*/
   gboolean mute;
@@ -68,7 +68,7 @@ struct _GESTimelineTextOverlay {
  */
 
 struct _GESTimelineTextOverlayClass {
-  GESTimelineObjectClass parent_class;
+  GESTimelineOverlayClass parent_class;
 
   /*< public >*/
 };