From 9462327e6601c88c7ba97ecd322d458c071b67af Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Wed, 18 Apr 2001 01:52:45 +0000 Subject: Connect to the "changed" signal of the categories entry so that they will 2001-04-17 Federico Mena Quintero * gui/event-editor.c (init_widgets): Connect to the "changed" signal of the categories entry so that they will be applied correctly. (EventEditorPrivate): Added fields for the contacts button and entry. (init_widgets): Disable the contacts widgets as we do not support them yet. (get_widgets): Get the contacts widgets. * gui/dialogs/task-editor.c (get_widgets): Get the contacts button, which was missing. (init_widgets): Disable the contacts widgets as we do not support them yet. * pcs/query.c (matches_text_list): Use e_utf8_strstrcasedecomp() instead of plain e_utf8_strstrcase(). (matches_summary): Likewise. svn path=/trunk/; revision=9436 --- calendar/pcs/query.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'calendar/pcs') diff --git a/calendar/pcs/query.c b/calendar/pcs/query.c index 48e77d216a..ed391ee667 100644 --- a/calendar/pcs/query.c +++ b/calendar/pcs/query.c @@ -513,7 +513,7 @@ matches_text_list (GSList *text_list, const char *str) text = l->data; g_assert (text->value != NULL); - if (e_utf8_strstrcase (text->value, str) != NULL) { + if (e_utf8_strstrcasedecomp (text->value, str) != NULL) { matches = TRUE; break; } @@ -561,7 +561,7 @@ matches_summary (CalComponent *comp, const char *str) if (!text.value) return FALSE; - return e_utf8_strstrcase (text.value, str) != NULL; + return e_utf8_strstrcasedecomp (text.value, str) != NULL; } /* Returns whether any text field in a component matches the specified string */ -- cgit v1.2.3