aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2003-03-27 12:06:43 +0800
committerChris Toshok <toshok@src.gnome.org>2003-03-27 12:06:43 +0800
commit06aa62ad092e7b94599a9b2cbf392fe731f3872d (patch)
treeb2e51783c0187f47bff51677b8d924d210af44ab
parent7cede93af547f2a0929440be4c803faec6f0ec75 (diff)
downloadgsoc2013-evolution-06aa62ad092e7b94599a9b2cbf392fe731f3872d.tar
gsoc2013-evolution-06aa62ad092e7b94599a9b2cbf392fe731f3872d.tar.gz
gsoc2013-evolution-06aa62ad092e7b94599a9b2cbf392fe731f3872d.tar.bz2
gsoc2013-evolution-06aa62ad092e7b94599a9b2cbf392fe731f3872d.tar.lz
gsoc2013-evolution-06aa62ad092e7b94599a9b2cbf392fe731f3872d.tar.xz
gsoc2013-evolution-06aa62ad092e7b94599a9b2cbf392fe731f3872d.tar.zst
gsoc2013-evolution-06aa62ad092e7b94599a9b2cbf392fe731f3872d.zip
[ fixes bug #34651 ] strcmp -> g_utf8_collate. (update_query): encode the
2003-03-26 Chris Toshok <toshok@ximian.com> [ fixes bug #34651 ] * gui/component/select-names/e-select-names.c (select_entry_changed): strcmp -> g_utf8_collate. (update_query): encode the string we pass for the query. svn path=/trunk/; revision=20541
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/component/select-names/e-select-names.c19
2 files changed, 20 insertions, 6 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 11f1c1ca28..ad110a7284 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,12 @@
2003-03-26 Chris Toshok <toshok@ximian.com>
+ [ fixes bug #34651 ]
+ * gui/component/select-names/e-select-names.c
+ (select_entry_changed): strcmp -> g_utf8_collate.
+ (update_query): encode the string we pass for the query.
+
+2003-03-26 Chris Toshok <toshok@ximian.com>
+
[ fixes bug #34085 ]
* gui/contact-list-editor/e-contact-list-editor.c
(table_drag_data_received_cb): only successfully complete the drag
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c
index 00f4004945..7de212b8fc 100644
--- a/addressbook/gui/component/select-names/e-select-names.c
+++ b/addressbook/gui/component/select-names/e-select-names.c
@@ -46,6 +46,7 @@
#include <gal/widgets/e-categories-master-list-option-menu.h>
#include <gal/e-text/e-entry.h>
#include <e-util/e-categories-master-list-wombat.h>
+#include "e-util/e-sexp.h"
static void e_select_names_init (ESelectNames *card);
static void e_select_names_class_init (ESelectNamesClass *klass);
@@ -354,22 +355,27 @@ update_query (GtkWidget *widget, ESelectNames *e_select_names)
char *query;
char *q_array[4];
int i;
+ GString *s = g_string_new ("");
+
if (e_select_names->categories) {
category = e_categories_master_list_option_menu_get_category (E_CATEGORIES_MASTER_LIST_OPTION_MENU (e_select_names->categories));
}
if (e_select_names->select_entry) {
search = gtk_entry_get_text (GTK_ENTRY (e_select_names->select_entry));
}
+
+ e_sexp_encode_string (s, search);
+
i = 0;
q_array[i++] = "(contains \"email\" \"\")";
if (category && *category)
q_array[i++] = g_strdup_printf ("(is \"category\" \"%s\")", category);
if (search && *search)
- q_array[i++] = g_strdup_printf ("(or (beginswith \"email\" \"%s\") "
- " (beginswith \"full_name\" \"%s\") "
- " (beginswith \"nickname\" \"%s\")"
- " (beginswith \"file_as\" \"%s\"))",
- search, search, search, search);
+ q_array[i++] = g_strdup_printf ("(or (beginswith \"email\" %s) "
+ " (beginswith \"full_name\" %s) "
+ " (beginswith \"nickname\" %s)"
+ " (beginswith \"file_as\" %s))",
+ s->str, s->str, s->str, s->str);
q_array[i++] = NULL;
if (i > 2) {
char *temp = g_strjoinv (" ", q_array);
@@ -385,6 +391,7 @@ update_query (GtkWidget *widget, ESelectNames *e_select_names)
g_free (q_array[i]);
}
g_free (query);
+ g_string_free (s, TRUE);
}
static void
@@ -423,7 +430,7 @@ select_entry_changed (GtkWidget *widget, ESelectNames *e_select_names)
E_CARD_SIMPLE_FIELD_NAME_OR_ORG,
model_row),
-1);
- if (strcmp (select_strcoll_string, row_strcoll_string) <= 0) {
+ if (g_utf8_collate (select_strcoll_string, row_strcoll_string) <= 0) {
g_free (row_strcoll_string);
break;
}