diff options
author | Chyla Zbigniew <chyla@src.gnome.org> | 2001-09-01 05:42:21 +0800 |
---|---|---|
committer | Chyla Zbigniew <chyla@src.gnome.org> | 2001-09-01 05:42:21 +0800 |
commit | ac5c6bb28360f3d1e7f7d2aabd8d64f22584503e (patch) | |
tree | 1bf7b0ac1e005db29147894801385cc3f67222a7 /addressbook/gui/widgets/e-addressbook-reflow-adapter.c | |
parent | 136c97b56d8dc0d2f9e04c27a18647b0dac4ca72 (diff) | |
download | gsoc2013-evolution-ac5c6bb28360f3d1e7f7d2aabd8d64f22584503e.tar.gz gsoc2013-evolution-ac5c6bb28360f3d1e7f7d2aabd8d64f22584503e.tar.zst gsoc2013-evolution-ac5c6bb28360f3d1e7f7d2aabd8d64f22584503e.zip |
s/_/U_/
* gui/component/addressbook-storage.c
(addressbook_get_other_contact_storage): s/_/U_/
* gui/widgets/e-addressbook-reflow-adapter.c (addressbook_compare):
Use g_utf8_collate.
* gui/widgets/e-minicard.c (e_minicard_compare):
Ditto.
* printing/e-contact-print.c (card_compare):
Ditto.
svn path=/trunk/; revision=12542
Diffstat (limited to 'addressbook/gui/widgets/e-addressbook-reflow-adapter.c')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-reflow-adapter.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-reflow-adapter.c b/addressbook/gui/widgets/e-addressbook-reflow-adapter.c index 97ceb36a1f..b4092605ed 100644 --- a/addressbook/gui/widgets/e-addressbook-reflow-adapter.c +++ b/addressbook/gui/widgets/e-addressbook-reflow-adapter.c @@ -13,6 +13,7 @@ #include <gal/widgets/e-unicode.h> #include <gal/widgets/e-font.h> #include <gal/widgets/e-popup-menu.h> +#include <gal/unicode/gunicode.h> #include "e-contact-save-as.h" #include "addressbook/printing/e-contact-print.h" #include "addressbook/printing/e-contact-print-envelope.h" @@ -366,7 +367,7 @@ addressbook_compare (EReflowModel *erm, int n1, int n2) file_as1 = card1->file_as; file_as2 = card2->file_as; if (file_as1 && file_as2) - return strcasecmp(file_as1, file_as2); + return g_utf8_collate(file_as1, file_as2); if (file_as1) return -1; if (file_as2) |