From e21dadd6f3a9acbdf2f08583608598417b792682 Mon Sep 17 00:00:00 2001 From: Soeren Sandmann Date: Sat, 21 Feb 2004 14:58:09 +0000 Subject: [PATCH] Some documentation fixes. Sat Feb 21 15:42:39 2004 Soeren Sandmann * glib/gqueue.c: Some documentation fixes. --- ChangeLog | 4 ++++ ChangeLog.pre-2-10 | 4 ++++ ChangeLog.pre-2-12 | 4 ++++ ChangeLog.pre-2-4 | 4 ++++ ChangeLog.pre-2-6 | 4 ++++ ChangeLog.pre-2-8 | 4 ++++ glib/gqueue.c | 18 ++++++------------ 7 files changed, 30 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index fc603e10a..15e4d0173 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Feb 21 15:42:39 2004 Soeren Sandmann + + * glib/gqueue.c: Some documentation fixes. + Sat Feb 21 13:45:08 2004 Soeren Sandmann * glib/gqueue.[ch]: Extend GQueue API to match the GList diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index fc603e10a..15e4d0173 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,7 @@ +Sat Feb 21 15:42:39 2004 Soeren Sandmann + + * glib/gqueue.c: Some documentation fixes. + Sat Feb 21 13:45:08 2004 Soeren Sandmann * glib/gqueue.[ch]: Extend GQueue API to match the GList diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index fc603e10a..15e4d0173 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,7 @@ +Sat Feb 21 15:42:39 2004 Soeren Sandmann + + * glib/gqueue.c: Some documentation fixes. + Sat Feb 21 13:45:08 2004 Soeren Sandmann * glib/gqueue.[ch]: Extend GQueue API to match the GList diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index fc603e10a..15e4d0173 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,7 @@ +Sat Feb 21 15:42:39 2004 Soeren Sandmann + + * glib/gqueue.c: Some documentation fixes. + Sat Feb 21 13:45:08 2004 Soeren Sandmann * glib/gqueue.[ch]: Extend GQueue API to match the GList diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index fc603e10a..15e4d0173 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,7 @@ +Sat Feb 21 15:42:39 2004 Soeren Sandmann + + * glib/gqueue.c: Some documentation fixes. + Sat Feb 21 13:45:08 2004 Soeren Sandmann * glib/gqueue.[ch]: Extend GQueue API to match the GList diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index fc603e10a..15e4d0173 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,7 @@ +Sat Feb 21 15:42:39 2004 Soeren Sandmann + + * glib/gqueue.c: Some documentation fixes. + Sat Feb 21 13:45:08 2004 Soeren Sandmann * glib/gqueue.[ch]: Extend GQueue API to match the GList diff --git a/glib/gqueue.c b/glib/gqueue.c index 437bbdc41..f7fce0593 100644 --- a/glib/gqueue.c +++ b/glib/gqueue.c @@ -766,10 +766,8 @@ g_queue_unlink (GQueue *queue, * @link_: a #GList link that must 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 **/