From 47ff96778e8d84e6906f3ae5e2f5a61147461ea6 Mon Sep 17 00:00:00 2001 From: Suresh Chandrasekharan Date: Tue, 11 May 2004 00:42:19 +0000 Subject: Fixes bug #44196 addressbook table view uses ASCII sort 2004-05-10 Suresh Chandrasekharan Fixes bug #44196 addressbook table view uses ASCII sort svn path=/trunk/; revision=25851 --- addressbook/gui/component/select-names/e-select-names.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'addressbook/gui/component/select-names') diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index 94ccef34c8..25c79790f9 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -425,7 +425,7 @@ select_entry_changed (GtkWidget *widget, ESelectNames *e_select_names) E_CONTACT_FULL_NAME, model_row), -1); - if (g_utf8_collate (select_strcoll_string, row_strcoll_string) <= 0) { + if (strcmp (select_strcoll_string, row_strcoll_string) <= 0) { g_free (row_strcoll_string); break; } -- cgit v1.2.3