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/gui | |
parent | 31cce91b8b510bf7ec879bba97e41a3a8fc304f5 (diff) | |
download | gsoc2013-evolution-04e7442218bb4d8bcd181520a02dc5d03a8418f4.tar gsoc2013-evolution-04e7442218bb4d8bcd181520a02dc5d03a8418f4.tar.gz gsoc2013-evolution-04e7442218bb4d8bcd181520a02dc5d03a8418f4.tar.bz2 gsoc2013-evolution-04e7442218bb4d8bcd181520a02dc5d03a8418f4.tar.lz gsoc2013-evolution-04e7442218bb4d8bcd181520a02dc5d03a8418f4.tar.xz 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/gui')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-completion.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |