Some documentation fixes.

Sat Feb 21 15:42:39 2004  Soeren Sandmann  <sandmann@daimi.au.dk>

	* glib/gqueue.c: Some documentation fixes.
This commit is contained in:
Soeren Sandmann 2004-02-21 14:58:09 +00:00 committed by Søren Sandmann Pedersen
parent 511eba3364
commit e21dadd6f3
7 changed files with 30 additions and 12 deletions

View File

@ -1,3 +1,7 @@
Sat Feb 21 15:42:39 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.c: Some documentation fixes.
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.[ch]: Extend GQueue API to match the GList

View File

@ -1,3 +1,7 @@
Sat Feb 21 15:42:39 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.c: Some documentation fixes.
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.[ch]: Extend GQueue API to match the GList

View File

@ -1,3 +1,7 @@
Sat Feb 21 15:42:39 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.c: Some documentation fixes.
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.[ch]: Extend GQueue API to match the GList

View File

@ -1,3 +1,7 @@
Sat Feb 21 15:42:39 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.c: Some documentation fixes.
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.[ch]: Extend GQueue API to match the GList

View File

@ -1,3 +1,7 @@
Sat Feb 21 15:42:39 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.c: Some documentation fixes.
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.[ch]: Extend GQueue API to match the GList

View File

@ -1,3 +1,7 @@
Sat Feb 21 15:42:39 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.c: Some documentation fixes.
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* glib/gqueue.[ch]: Extend GQueue API to match the GList

View File

@ -766,10 +766,8 @@ g_queue_unlink (GQueue *queue,
* @link_: a #GList link that <emphasis>must</emphasis> be part of @queue
*
* Removes @link_ from @queue and frees it.
*
* If @link_ is not part of @queue, the result of calling this function
* is undefined. Unlike most other functions in GLib this will not produce
* any warnings or assertion failures.
*
* @link_ must be part of @queue.
*
* Since: 2.4
**/
@ -925,10 +923,8 @@ g_queue_remove_all (GQueue *queue,
* @data: the data to insert
*
* Inserts @data into @queue before @sibling.
*
* If @sibling is not part of @queue, the result of calling this function
* is undefined. Unlike most other functions in GLib this will not produce
* any warnings or assertion failures.
*
* @sibling must be part of @queue.
*
* Since: 2.4
**/
@ -951,10 +947,8 @@ g_queue_insert_before (GQueue *queue,
* @data: the data to insert
*
* Inserts @data into @queue after @sibling
*
* If @sibling is not part of @queue, the result of calling this function
* is undefined. Unlike most other functions in GLib this will not produce
* any warnings or assertion failures.
*
* @sibling must be part of @queue
*
* Since: 2.4
**/