[totem-pl-parser] Fix documentation section references
- From: Philip Withnall <pwithnall src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [totem-pl-parser] Fix documentation section references
- Date: Mon, 4 Jan 2010 16:52:32 +0000 (UTC)
commit c49a1bb8c6f939cd7dc4ef47be40f59d1e5c1089
Author: Philip Withnall <philip tecnocode co uk>
Date: Mon Jan 4 16:51:40 2010 +0000
Fix documentation section references
Fix ID collision between two sections which were both trying to call
themselves "TotemPlParser". This stops the irritating stream of warnings from
gtk-doc when building.
plparse/totem-pl-parser.h | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/plparse/totem-pl-parser.h b/plparse/totem-pl-parser.h
index 2f62eb6..fe87df7 100644
--- a/plparse/totem-pl-parser.h
+++ b/plparse/totem-pl-parser.h
@@ -56,16 +56,16 @@ typedef enum {
TOTEM_PL_PARSER_RESULT_CANCELLED
} TotemPlParserResult;
-typedef struct TotemPlParser TotemPlParser;
-typedef struct TotemPlParserClass TotemPlParserClass;
-typedef struct TotemPlParserPrivate TotemPlParserPrivate;
-
/**
* TotemPlParser:
*
* All the fields in the #TotemPlParser structure are private and should never be accessed directly.
**/
-struct TotemPlParser {
+typedef struct _TotemPlParser TotemPlParser;
+typedef struct TotemPlParserClass TotemPlParserClass;
+typedef struct TotemPlParserPrivate TotemPlParserPrivate;
+
+struct _TotemPlParser {
GObject parent;
TotemPlParserPrivate *priv;
};
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]