toc setter: change GstTocSetterIFace to GstTocSetterInterface
authorEvan Nemerson <evan@coeus-group.com>
Fri, 15 Jun 2012 21:50:48 +0000 (14:50 -0700)
committerWim Taymans <wim.taymans@collabora.co.uk>
Mon, 18 Jun 2012 11:10:34 +0000 (13:10 +0200)
Without this GObject Introspection does not recognize the connection
to GstTocSetter.

gst/gsttocsetter.c
gst/gsttocsetter.h

index 85bbaa2..dabc144 100644 (file)
@@ -69,7 +69,7 @@ gst_toc_setter_get_type (void)
   if (g_once_init_enter (&toc_setter_type)) {
     GType _type;
     static const GTypeInfo toc_setter_info = {
-      sizeof (GstTocSetterIFace),       /* class_size */
+      sizeof (GstTocSetterInterface),   /* class_size */
       NULL,                     /* base_init */
       NULL,                     /* base_finalize */
       NULL,
index 2174e0d..d99a170 100644 (file)
@@ -28,23 +28,23 @@ G_BEGIN_DECLS
 #define GST_TYPE_TOC_SETTER                    (gst_toc_setter_get_type ())
 #define GST_TOC_SETTER(obj)                    (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_TOC_SETTER, GstTocSetter))
 #define GST_IS_TOC_SETTER(obj)             (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_TOC_SETTER))
-#define GST_TOC_SETTER_GET_IFACE(obj)  (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GST_TYPE_TOC_SETTER, GstTocSetterIFace))
+#define GST_TOC_SETTER_GET_IFACE(obj)  (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GST_TYPE_TOC_SETTER, GstTocSetterInterface))
 /**
  * GstTocSetter:
  *
  * Opaque #GstTocSetter data structure.
  */
 typedef struct _GstTocSetter GstTocSetter;
-typedef struct _GstTocSetterIFace GstTocSetterIFace;
+typedef struct _GstTocSetterInterface GstTocSetterInterface;
 
 /**
- * GstTocSetterIFace:
+ * GstTocSetterInterface:
  * @g_iface: parent interface type.
  *
- * #GstTocSetterIFace interface.
+ * #GstTocSetterInterface interface.
  */
 
-struct _GstTocSetterIFace
+struct _GstTocSetterInterface
 {
   GTypeInterface g_iface;