summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Crête <olivier.crete@collabora.com>2014-03-06 17:06:06 -0500
committerOlivier Crête <olivier.crete@collabora.com>2014-03-06 17:06:06 -0500
commit810b722dfef6d850ed39c3104bd4ef7530315811 (patch)
treeae17fd0193f49b08fa2bfb99e0890c9d465d14f4
parent9d52fa0640edd31ed263f4832d974717af8352ad (diff)
downloadlibnice-810b722dfef6d850ed39c3104bd4ef7530315811.tar.gz
iostream: De-gtkdoc the comments, as it's not public API
-rw-r--r--agent/inputstream.c10
-rw-r--r--agent/iostream.c10
-rw-r--r--agent/outputstream.c10
3 files changed, 15 insertions, 15 deletions
diff --git a/agent/inputstream.c b/agent/inputstream.c
index 5eb8dc1..a6a678b 100644
--- a/agent/inputstream.c
+++ b/agent/inputstream.c
@@ -34,7 +34,7 @@
* file under either the MPL or the LGPL.
*/
-/**
+/***
* SECTION:nice_input_stream
* @short_description: #GInputStream implementation for libnice
* @see_also: #NiceAgent
@@ -116,7 +116,7 @@ nice_input_stream_class_init (NiceInputStreamClass *klass)
stream_class->read_fn = nice_input_stream_read;
- /**
+ /***
* NiceInputStream:agent:
*
* The #NiceAgent to wrap with an input stream. This must be an existing
@@ -135,7 +135,7 @@ nice_input_stream_class_init (NiceInputStreamClass *klass)
NICE_TYPE_AGENT,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
- /**
+ /***
* NiceInputStream:stream-id:
*
* ID of the stream to use in the #NiceInputStream:agent.
@@ -151,7 +151,7 @@ nice_input_stream_class_init (NiceInputStreamClass *klass)
0,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
- /**
+ /***
* NiceInputStream:component-id:
*
* ID of the component to use in the #NiceInputStream:agent.
@@ -259,7 +259,7 @@ nice_input_stream_init_pollable (GPollableInputStreamInterface *iface)
iface->create_source = nice_input_stream_create_source;
}
-/**
+/***
* nice_input_stream_new:
* @agent: A #NiceAgent
* @stream_id: The ID of the agent’s stream to wrap
diff --git a/agent/iostream.c b/agent/iostream.c
index f3c5e61..726399b 100644
--- a/agent/iostream.c
+++ b/agent/iostream.c
@@ -34,7 +34,7 @@
* file under either the MPL or the LGPL.
*/
-/**
+/***
* SECTION:nice_io_stream
* @short_description: #GIOStream implementation for libnice
* @see_also: #NiceAgent
@@ -110,7 +110,7 @@ nice_io_stream_class_init (NiceIOStreamClass *klass)
stream_class->get_input_stream = nice_io_stream_get_input_stream;
stream_class->get_output_stream = nice_io_stream_get_output_stream;
- /**
+ /*
* NiceIOStream:agent:
*
* The #NiceAgent to wrap with an I/O stream. This must be an existing
@@ -129,7 +129,7 @@ nice_io_stream_class_init (NiceIOStreamClass *klass)
NICE_TYPE_AGENT,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
- /**
+ /*
* NiceIOStream:stream-id:
*
* ID of the stream to use in the #NiceIOStream:agent.
@@ -145,7 +145,7 @@ nice_io_stream_class_init (NiceIOStreamClass *klass)
0,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
- /**
+ /*
* NiceIOStream:component-id:
*
* ID of the component to use in the #NiceIOStream:agent.
@@ -259,7 +259,7 @@ nice_io_stream_set_property (GObject *object, guint prop_id,
}
}
-/**
+/***
* nice_io_stream_new:
* @agent: A #NiceAgent
* @stream_id: The ID of the agent’s stream to wrap
diff --git a/agent/outputstream.c b/agent/outputstream.c
index 74574b4..32f9829 100644
--- a/agent/outputstream.c
+++ b/agent/outputstream.c
@@ -34,7 +34,7 @@
* file under either the MPL or the LGPL.
*/
-/**
+/***
* SECTION:nice_output_stream
* @short_description: #GOutputStream implementation for libnice
* @see_also: #NiceAgent
@@ -127,7 +127,7 @@ nice_output_stream_class_init (NiceOutputStreamClass *klass)
gobject_class->get_property = nice_output_stream_get_property;
gobject_class->dispose = nice_output_stream_dispose;
- /**
+ /***
* NiceOutputStream:agent:
*
* The #NiceAgent to wrap with an output stream. This must be an existing
@@ -146,7 +146,7 @@ nice_output_stream_class_init (NiceOutputStreamClass *klass)
NICE_TYPE_AGENT,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
- /**
+ /***
* NiceOutputStream:stream-id:
*
* ID of the stream to use in the #NiceOutputStream:agent.
@@ -162,7 +162,7 @@ nice_output_stream_class_init (NiceOutputStreamClass *klass)
0,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
- /**
+ /***
* NiceOutputStream:component-id:
*
* ID of the component to use in the #NiceOutputStream:agent.
@@ -273,7 +273,7 @@ nice_output_stream_init_pollable (GPollableOutputStreamInterface *iface)
iface->create_source = nice_output_stream_create_source;
}
-/**
+/***
* nice_output_stream_new:
* @agent: A #NiceAgent
* @stream_id: The ID of the agent’s stream to wrap