aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2001-04-18 09:52:45 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-04-18 09:52:45 +0800
commit9462327e6601c88c7ba97ecd322d458c071b67af (patch)
tree3d3a0a41e43cae40f93c69b7ff649f6a1f87267d /calendar/pcs
parent0f436d9a223e24184eaea2a2c4be90151fd3260a (diff)
downloadgsoc2013-evolution-9462327e6601c88c7ba97ecd322d458c071b67af.tar
gsoc2013-evolution-9462327e6601c88c7ba97ecd322d458c071b67af.tar.gz
gsoc2013-evolution-9462327e6601c88c7ba97ecd322d458c071b67af.tar.bz2
gsoc2013-evolution-9462327e6601c88c7ba97ecd322d458c071b67af.tar.lz
gsoc2013-evolution-9462327e6601c88c7ba97ecd322d458c071b67af.tar.xz
gsoc2013-evolution-9462327e6601c88c7ba97ecd322d458c071b67af.tar.zst
gsoc2013-evolution-9462327e6601c88c7ba97ecd322d458c071b67af.zip
Connect to the "changed" signal of the categories entry so that they will
2001-04-17 Federico Mena Quintero <federico@ximian.com> * 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
Diffstat (limited to 'calendar/pcs')
-rw-r--r--calendar/pcs/query.c4
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 */