diff options
author | Chris Toshok <toshok@ximian.com> | 2002-09-21 15:51:05 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-09-21 15:51:05 +0800 |
commit | 04e7442218bb4d8bcd181520a02dc5d03a8418f4 (patch) | |
tree | 3d060bbca15d6b75cfd8be4bfb8523682895d011 /addressbook | |
parent | 31cce91b8b510bf7ec879bba97e41a3a8fc304f5 (diff) | |
download | gsoc2013-evolution-04e7442218bb4d8bcd181520a02dc5d03a8418f4.tar.gz gsoc2013-evolution-04e7442218bb4d8bcd181520a02dc5d03a8418f4.tar.zst gsoc2013-evolution-04e7442218bb4d8bcd181520a02dc5d03a8418f4.zip |
[ Fixes #30483 ] argh, contains => beginswith.
2002-09-20 Chris Toshok <toshok@ximian.com>
[ Fixes #30483 ]
* gui/component/select-names/e-select-names-completion.c
(name_style_query): argh, contains => beginswith.
svn path=/trunk/; revision=18150
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-completion.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 95eda0b1f9..07d7a190f6 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2002-09-20 Chris Toshok <toshok@ximian.com> + + [ Fixes #30483 ] + * gui/component/select-names/e-select-names-completion.c + (name_style_query): argh, contains => beginswith. + 2002-09-17 Chris Toshok <toshok@ximian.com> * gui/component/addressbook-component.c (add_creatable_item): diff --git a/addressbook/gui/component/select-names/e-select-names-completion.c b/addressbook/gui/component/select-names/e-select-names-completion.c index 2423607847..f905cf872c 100644 --- a/addressbook/gui/component/select-names/e-select-names-completion.c +++ b/addressbook/gui/component/select-names/e-select-names-completion.c @@ -250,7 +250,7 @@ name_style_query (ESelectNamesCompletion *comp, const gchar *field) ++count; g_strstrip (strv[i]); old = strv[i]; - strv[i] = g_strdup_printf ("(contains \"%s\" \"%s\")", field, old); + strv[i] = g_strdup_printf ("(beginswith \"%s\" \"%s\")", field, old); g_free (old); } |