From 4c89978b6e2e5d8d37d3b6810c3ce38bf20fb673 Mon Sep 17 00:00:00 2001 From: Stéphane Loeuillet Date: Fri, 21 May 2004 23:28:57 +0000 Subject: second batch : remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc (in ... Original commit message from CVS: second batch : remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc (in gst-plugins/ext/ this time) --- ext/pango/gsttextoverlay.c | 2 +- ext/pango/gsttextoverlay.h | 4 ++-- ext/pango/gsttimeoverlay.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'ext/pango') diff --git a/ext/pango/gsttextoverlay.c b/ext/pango/gsttextoverlay.c index 9468b12c..5e9cb469 100644 --- a/ext/pango/gsttextoverlay.c +++ b/ext/pango/gsttextoverlay.c @@ -25,7 +25,7 @@ enum ARG_HALIGN, ARG_X0, ARG_Y0, - ARG_FONT_DESC, + ARG_FONT_DESC }; diff --git a/ext/pango/gsttextoverlay.h b/ext/pango/gsttextoverlay.h index b039acac..df5b5b55 100644 --- a/ext/pango/gsttextoverlay.h +++ b/ext/pango/gsttextoverlay.h @@ -28,13 +28,13 @@ typedef enum _GstTextOverlayHAlign GstTextOverlayHAlign; enum _GstTextOverlayVAlign { GST_TEXT_OVERLAY_VALIGN_BASELINE, GST_TEXT_OVERLAY_VALIGN_BOTTOM, - GST_TEXT_OVERLAY_VALIGN_TOP, + GST_TEXT_OVERLAY_VALIGN_TOP }; enum _GstTextOverlayHAlign { GST_TEXT_OVERLAY_HALIGN_LEFT, GST_TEXT_OVERLAY_HALIGN_CENTER, - GST_TEXT_OVERLAY_HALIGN_RIGHT, + GST_TEXT_OVERLAY_HALIGN_RIGHT }; diff --git a/ext/pango/gsttimeoverlay.c b/ext/pango/gsttimeoverlay.c index 3ec20bcb..d4226464 100644 --- a/ext/pango/gsttimeoverlay.c +++ b/ext/pango/gsttimeoverlay.c @@ -53,8 +53,8 @@ enum enum { - ARG_0, - /* FILL ME */ + ARG_0 + /* FILL ME */ }; static void gst_timeoverlay_base_init (gpointer g_class); -- cgit