mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
textrender: Add ; after GST_BOILERPLATE to fix indention
This commit is contained in:
parent
9fc4d195e1
commit
ce95857718
1 changed files with 5 additions and 4 deletions
|
@ -78,13 +78,14 @@ static GstStaticPadTemplate sink_template_factory =
|
|||
GST_STATIC_CAPS ("text/x-pango-markup; text/plain")
|
||||
);
|
||||
|
||||
GST_BOILERPLATE (GstTextRender, gst_text_render, GstElement, GST_TYPE_ELEMENT)
|
||||
GST_BOILERPLATE (GstTextRender, gst_text_render, GstElement, GST_TYPE_ELEMENT);
|
||||
|
||||
static void gst_text_render_finalize (GObject * object);
|
||||
static void gst_text_render_set_property (GObject * object,
|
||||
static void gst_text_render_finalize (GObject * object);
|
||||
static void gst_text_render_set_property (GObject * object,
|
||||
guint prop_id, const GValue * value, GParamSpec * pspec);
|
||||
|
||||
static void gst_text_render_base_init (gpointer g_class)
|
||||
static void
|
||||
gst_text_render_base_init (gpointer g_class)
|
||||
{
|
||||
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
||||
|
||||
|
|
Loading…
Reference in a new issue