mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gaudi: fix documentation warning in GstChromium
Fixing the following warning when generating documentation: xml/element-chromium.xml:74: element refsect2: validity error : ID GstChromium already defined <refsect2 id="GstChromium" role="typedef"> ^ Warning: multiple "IDs" for constraint linkend: GstChromium. DOC Fixing cross-references
This commit is contained in:
parent
4d6a21926e
commit
3b491a15cb
1 changed files with 4 additions and 4 deletions
|
@ -62,10 +62,10 @@ G_BEGIN_DECLS
|
||||||
#define GST_IS_CHROMIUM_CLASS(klass) \
|
#define GST_IS_CHROMIUM_CLASS(klass) \
|
||||||
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_CHROMIUM))
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_CHROMIUM))
|
||||||
|
|
||||||
typedef struct GstChromium GstChromium;
|
typedef struct _GstChromium GstChromium;
|
||||||
typedef struct GstChromiumClass GstChromiumClass;
|
typedef struct _GstChromiumClass GstChromiumClass;
|
||||||
|
|
||||||
struct GstChromium
|
struct _GstChromium
|
||||||
{
|
{
|
||||||
GstVideoFilter videofilter;
|
GstVideoFilter videofilter;
|
||||||
|
|
||||||
|
@ -73,7 +73,7 @@ struct GstChromium
|
||||||
gint edge_a, edge_b;
|
gint edge_a, edge_b;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct GstChromiumClass
|
struct _GstChromiumClass
|
||||||
{
|
{
|
||||||
GstVideoFilterClass parent_class;
|
GstVideoFilterClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue