summaryrefslogtreecommitdiff
path: root/telepathy-glib/base-media-call-stream.c
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2012-01-10 17:45:47 +1100
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-01-10 10:42:04 +0100
commitf2dc3b62db9a85264d5bcc8f23d4ed887afecf1f (patch)
treed211296d90fc6e0eb8f82dd76440bfb02230f864 /telepathy-glib/base-media-call-stream.c
parent182cb712accfe8d4fe3ec964a7b0686f847cd838 (diff)
downloadtelepathy-glib-f2dc3b62db9a85264d5bcc8f23d4ed887afecf1f.tar.gz
Mark base call types as abstract
Use correct semicolons.
Diffstat (limited to 'telepathy-glib/base-media-call-stream.c')
-rw-r--r--telepathy-glib/base-media-call-stream.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/telepathy-glib/base-media-call-stream.c b/telepathy-glib/base-media-call-stream.c
index 3f4ccaf4b..7257dad91 100644
--- a/telepathy-glib/base-media-call-stream.c
+++ b/telepathy-glib/base-media-call-stream.c
@@ -162,11 +162,12 @@
static void call_stream_media_iface_init (gpointer, gpointer);
-G_DEFINE_TYPE_WITH_CODE(TpBaseMediaCallStream, tp_base_media_call_stream,
- TP_TYPE_BASE_CALL_STREAM,
- G_IMPLEMENT_INTERFACE (TP_TYPE_SVC_CALL_STREAM_INTERFACE_MEDIA,
- call_stream_media_iface_init);
- );
+G_DEFINE_ABSTRACT_TYPE_WITH_CODE (TpBaseMediaCallStream,
+ tp_base_media_call_stream, TP_TYPE_BASE_CALL_STREAM,
+
+ G_IMPLEMENT_INTERFACE (TP_TYPE_SVC_CALL_STREAM_INTERFACE_MEDIA,
+ call_stream_media_iface_init)
+ )
static const gchar *tp_base_media_call_stream_interfaces[] = {
TP_IFACE_CALL_STREAM_INTERFACE_MEDIA,