[gnome-calendar] source-dialog: use case-insensitive sorting in the calendar list



commit 6728ddd019da352a284b98701efeb6ad4d6aff57
Author: Evgeny Shulgin <izarizar mail ru>
Date:   Thu Apr 20 19:46:49 2017 +0300

    source-dialog: use case-insensitive sorting in the calendar list
    
    g_strcmp0() is used when comparing the display name of the ESource.
    This is not a valid sort, because in this case we will get an order
    like "a" < "z" < "B" < "Z", but it should be like "a", "B", "z", "Z".
    
    We will use g_ascii_strcasecmp() to fix it.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=781231

 src/gcal-source-dialog.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/gcal-source-dialog.c b/src/gcal-source-dialog.c
index 2c98411..b9efe0f 100644
--- a/src/gcal-source-dialog.c
+++ b/src/gcal-source-dialog.c
@@ -388,7 +388,7 @@ calendar_listbox_sort_func (GtkListBoxRow *row1,
 
       /* If they have the same parent names, compare by the source display names */
       if (retval == 0)
-        retval = g_strcmp0 (e_source_get_display_name (source1), e_source_get_display_name (source2));
+        retval = g_ascii_strcasecmp (e_source_get_display_name (source1), e_source_get_display_name 
(source2));
 
       g_free (parent_name1);
       g_free (parent_name2);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]