diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-09-13 04:29:37 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-09-13 04:29:37 +0800 |
commit | 0577bd1a603603873628d035fec92ce96d97cef0 (patch) | |
tree | b244c870770a30b0b42bd79818338ad1d58e762b /addressbook/gui | |
parent | fe0b0a35877ca1af05935eb41eb6c1f706c1b6cf (diff) | |
download | gsoc2013-evolution-0577bd1a603603873628d035fec92ce96d97cef0.tar gsoc2013-evolution-0577bd1a603603873628d035fec92ce96d97cef0.tar.gz gsoc2013-evolution-0577bd1a603603873628d035fec92ce96d97cef0.tar.bz2 gsoc2013-evolution-0577bd1a603603873628d035fec92ce96d97cef0.tar.lz gsoc2013-evolution-0577bd1a603603873628d035fec92ce96d97cef0.tar.xz gsoc2013-evolution-0577bd1a603603873628d035fec92ce96d97cef0.tar.zst gsoc2013-evolution-0577bd1a603603873628d035fec92ce96d97cef0.zip |
printf arguments were reversed by mistake. Fixed bug #9693.
2001-09-12 Jon Trowbridge <trow@ximian.com>
* gui/component/select-names/e-select-names-completion.c (match_email):
printf arguments were reversed by mistake. Fixed bug #9693.
svn path=/trunk/; revision=12779
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 c5d1727300..178728fe9f 100644 --- a/addressbook/gui/component/select-names/e-select-names-completion.c +++ b/addressbook/gui/component/select-names/e-select-names-completion.c @@ -188,7 +188,7 @@ match_email (ESelectNamesCompletion *comp, EDestination *dest) score = len * 2; /* 2 points for each matching character */ if (name && *name) - str = g_strdup_printf ("<%s> %s", name, email); + str = g_strdup_printf ("<%s> %s", email, name); else str = g_strdup (email); |