From 9a998ef46cb44bb0041c64d180acfe61e7f093d9 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 30 Oct 2003 01:43:45 +0000 Subject: change Iface to Interface Original commit message from CVS: change Iface to Interface --- gst-libs/gst/navigation/navigation.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gst-libs/gst/navigation/navigation.h') diff --git a/gst-libs/gst/navigation/navigation.h b/gst-libs/gst/navigation/navigation.h index 32eeaa32..5ce3a5c7 100644 --- a/gst-libs/gst/navigation/navigation.h +++ b/gst-libs/gst/navigation/navigation.h @@ -34,18 +34,18 @@ G_BEGIN_DECLS #define GST_IS_NAVIGATION(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_NAVIGATION)) #define GST_NAVIGATION_GET_IFACE(obj) \ - (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GST_TYPE_NAVIGATION, GstNavigationIface)) + (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GST_TYPE_NAVIGATION, GstNavigationInterface)) typedef struct _GstNavigation GstNavigation; -typedef struct _GstNavigationIface { +typedef struct _GstNavigationInterface { GTypeInterface g_iface; /* virtual functions */ void (*send_event) (GstNavigation *navigation, GstCaps *caps); GST_CLASS_PADDING -} GstNavigationIface; +} GstNavigationInterface; GType gst_navigation_get_type (void); -- cgit v1.2.1