docs: fix gtk-doc /*< private >*/ marker
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 9 Jun 2009 13:54:27 +0000 (14:54 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 2 Jul 2009 00:18:57 +0000 (01:18 +0100)
gst/gstbufferlist.c
gst/gstbus.h
gst/gstchildproxy.h
gst/gstelementfactory.h
gst/gstghostpad.h
gst/gstmessage.h
gst/gstquery.h
libs/gst/base/gstdataqueue.h

index 3a5d686..5db81b8 100644 (file)
@@ -141,7 +141,6 @@ struct _GstBufferList
 {
   GstMiniObject mini_object;
 
-  /*< private > */
   GList *buffers;
 };
 
index f850e51..7f3e7d1 100644 (file)
@@ -114,7 +114,7 @@ struct _GstBus
 {
   GstObject        object;
 
-  /*< private > */
+  /*< private >*/
   GQueue           *queue;
   GMutex           *queue_lock;
 
@@ -124,7 +124,7 @@ struct _GstBus
   guint             signal_watch_id;
   guint             num_signal_watchers;
 
-  /*< private > */
+  /*< private >*/
   GstBusPrivate    *priv;
   gpointer _gst_reserved[GST_PADDING - 1];
 };
@@ -137,7 +137,7 @@ struct _GstBusClass
   void (*message)      (GstBus *bus, GstMessage *message);
   void (*sync_message)  (GstBus *bus, GstMessage *message);
 
-  /*< private > */
+  /*< private >*/
   gpointer _gst_reserved[GST_PADDING];
 };
 
index c2c86e5..ebb2d14 100644 (file)
@@ -56,12 +56,12 @@ struct _GstChildProxyInterface
   /* methods */
   GstObject *(*get_child_by_index) (GstChildProxy * parent, guint index);
   guint (*get_children_count) (GstChildProxy * parent);
-  /*< private > */
+  /*< private >*/
   /* signals */
   void (*child_added) (GstChildProxy * parent, GstObject * child);
   void (*child_removed) (GstChildProxy * parent, GstObject * child);
 
-  /*< private > */
+  /*< private >*/
   gpointer _gst_reserved[GST_PADDING];
 };
 
index 02ed118..bca9f88 100644 (file)
@@ -65,7 +65,7 @@ struct _GstElementDetails
   gchar *description;
   gchar *author;
 
-  /*< private > */
+  /*< private >*/
   gpointer _gst_reserved[GST_PADDING];
 };
 
index db78f77..f492a74 100644 (file)
@@ -45,7 +45,7 @@ struct _GstProxyPad
 {
   GstPad pad;
 
-  /*< private > */
+  /*< private >*/
   GstProxyPadPrivate *priv;
 };
 
@@ -53,7 +53,7 @@ struct _GstProxyPadClass
 {
   GstPadClass parent_class;
 
-  /*< private > */
+  /*< private >*/
   gpointer _gst_reserved[1];
 };
 
@@ -80,7 +80,7 @@ struct _GstGhostPad
 {
   GstProxyPad pad;
 
-  /*< private > */
+  /*< private >*/
   GstGhostPadPrivate *priv;
 };
 
@@ -88,7 +88,7 @@ struct _GstGhostPadClass
 {
   GstProxyPadClass parent_class;
 
-  /*< private > */
+  /*< private >*/
   gpointer _gst_reserved[GST_PADDING];
 };
 
index fa06e3a..9678d8d 100644 (file)
@@ -250,7 +250,7 @@ struct _GstMessage
 {
   GstMiniObject mini_object;
 
-  /*< private > *//* with MESSAGE_LOCK */
+  /*< private >*//* with MESSAGE_LOCK */
   GMutex *lock;                 /* lock and cond for async delivery */
   GCond *cond;
 
@@ -261,7 +261,7 @@ struct _GstMessage
 
   GstStructure *structure;
 
-  /*< private > */
+  /*< private >*/
   union {
     struct {
       guint32 seqnum;
@@ -274,7 +274,7 @@ struct _GstMessage
 struct _GstMessageClass {
   GstMiniObjectClass mini_object_class;
 
-  /*< private > */
+  /*< private >*/
   gpointer _gst_reserved[GST_PADDING];
 };
 
index c9596d6..fe48543 100644 (file)
@@ -154,14 +154,14 @@ struct _GstQuery
 
   GstStructure *structure;
 
-  /*< private > */
+  /*< private >*/
   gpointer _gst_reserved;
 };
 
 struct _GstQueryClass {
   GstMiniObjectClass mini_object_class;
 
-  /*< private > */
+  /*< private >*/
   gpointer _gst_reserved[GST_PADDING];
 };
 
index 44bac88..ab2a656 100644 (file)
@@ -107,7 +107,7 @@ struct _GstDataQueue
 {
   GObject object;
 
-  /*< private > */
+  /*< private >*/
   /* the queue of data we're keeping our grubby hands on */
   GQueue *queue;