diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-06-28 12:39:48 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-06-28 12:43:11 -0400 |
commit | 334f95479bcbc504f051106752aa9e754238c7c4 (patch) | |
tree | 186154ec73e43cb534934a88b3822bc9c06e2c8d /gtk/gtksorter.h | |
parent | 9dff4d6ff3ad49eb90b8dadb71abb69ea9c8c460 (diff) | |
download | gtk+-334f95479bcbc504f051106752aa9e754238c7c4.tar.gz |
sorter: Some doc corrections
The docs were referring to some non-existing enum value.
Fix things up to match the current code.
Diffstat (limited to 'gtk/gtksorter.h')
-rw-r--r-- | gtk/gtksorter.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gtk/gtksorter.h b/gtk/gtksorter.h index 5a997a7c84..9dc78f20db 100644 --- a/gtk/gtksorter.h +++ b/gtk/gtksorter.h @@ -31,12 +31,9 @@ G_BEGIN_DECLS /** * GtkSorterOrder: - * @GTK_SORTER_ORDER_PARTIAL: A partial order. And #GtkOrdering is possible. - * @GTK_SORTER_ORDER_INVALID: An invalid order. gtk_sorter_compare() will - * always return %GTK_ORDERING_INVALID if both items are unequal. + * @GTK_SORTER_ORDER_PARTIAL: A partial order. Any #GtkOrdering is possible. * @GTK_SORTER_ORDER_NONE: No order, all elements are considered equal. - * gtk_sorter_compare() will only return %GTK_ORDERING_EQUAL or - * %GTK_ORDERING_INVALID. + * gtk_sorter_compare() will only return %GTK_ORDERING_EQUAL. * @GTK_SORTER_ORDER_TOTAL: A total order. gtk_sorter_compare() will only * return %GTK_ORDERING_EQUAL if an item is compared with itself. Two * different items will never cause this value to be returned. |