diff options
Diffstat (limited to 'calendar/pcs')
-rw-r--r-- | calendar/pcs/query.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 */ |