mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-03 22:52:09 +01:00
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:
parent
511eba3364
commit
e21dadd6f3
@ -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>
|
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
|
||||||
|
|
||||||
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
||||||
|
@ -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>
|
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
|
||||||
|
|
||||||
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
||||||
|
@ -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>
|
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
|
||||||
|
|
||||||
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
||||||
|
@ -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>
|
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
|
||||||
|
|
||||||
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
||||||
|
@ -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>
|
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
|
||||||
|
|
||||||
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
||||||
|
@ -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>
|
Sat Feb 21 13:45:08 2004 Soeren Sandmann <sandmann@daimi.au.dk>
|
||||||
|
|
||||||
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
* glib/gqueue.[ch]: Extend GQueue API to match the GList
|
||||||
|
@ -767,9 +767,7 @@ g_queue_unlink (GQueue *queue,
|
|||||||
*
|
*
|
||||||
* Removes @link_ from @queue and frees it.
|
* Removes @link_ from @queue and frees it.
|
||||||
*
|
*
|
||||||
* If @link_ is not part of @queue, the result of calling this function
|
* @link_ must be part of @queue.
|
||||||
* is undefined. Unlike most other functions in GLib this will not produce
|
|
||||||
* any warnings or assertion failures.
|
|
||||||
*
|
*
|
||||||
* Since: 2.4
|
* Since: 2.4
|
||||||
**/
|
**/
|
||||||
@ -926,9 +924,7 @@ g_queue_remove_all (GQueue *queue,
|
|||||||
*
|
*
|
||||||
* Inserts @data into @queue before @sibling.
|
* Inserts @data into @queue before @sibling.
|
||||||
*
|
*
|
||||||
* If @sibling is not part of @queue, the result of calling this function
|
* @sibling must be part of @queue.
|
||||||
* is undefined. Unlike most other functions in GLib this will not produce
|
|
||||||
* any warnings or assertion failures.
|
|
||||||
*
|
*
|
||||||
* Since: 2.4
|
* Since: 2.4
|
||||||
**/
|
**/
|
||||||
@ -952,9 +948,7 @@ g_queue_insert_before (GQueue *queue,
|
|||||||
*
|
*
|
||||||
* Inserts @data into @queue after @sibling
|
* Inserts @data into @queue after @sibling
|
||||||
*
|
*
|
||||||
* If @sibling is not part of @queue, the result of calling this function
|
* @sibling must be part of @queue
|
||||||
* is undefined. Unlike most other functions in GLib this will not produce
|
|
||||||
* any warnings or assertion failures.
|
|
||||||
*
|
*
|
||||||
* Since: 2.4
|
* Since: 2.4
|
||||||
**/
|
**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user