diff options
Diffstat (limited to 'addressbook/gui/component')
-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); |