diff options
author | Milan Crha <mcrha@redhat.com> | 2012-04-18 01:08:52 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-04-18 01:08:52 +0800 |
commit | 3cfe8dad1685189ce0ae300a50114b5896e79e9f (patch) | |
tree | 0a1192865ea82a28f38240d3f600e6a9abfd59dd /addressbook | |
parent | 88437c753ddb5faa5257279f63e4e871d7454f16 (diff) | |
download | gsoc2013-evolution-3cfe8dad1685189ce0ae300a50114b5896e79e9f.tar.gz gsoc2013-evolution-3cfe8dad1685189ce0ae300a50114b5896e79e9f.tar.zst gsoc2013-evolution-3cfe8dad1685189ce0ae300a50114b5896e79e9f.zip |
Bug #667912 - Remove name field from formatted address label
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/widgets/eab-gui-util.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c index 887ffc845c..535e1bd3f0 100644 --- a/addressbook/gui/widgets/eab-gui-util.c +++ b/addressbook/gui/widgets/eab-gui-util.c @@ -52,8 +52,8 @@ #include <camel/camel.h> /* Template tags for address format localization */ -#define ADDRESS_REALNAME "%n" -#define ADDRESS_REALNAME_UPPER "%N" +#define ADDRESS_REALNAME "%n" /* this is not used intentionally */ +#define ADDRESS_REALNAME_UPPER "%N" /* this is not used intentionally */ #define ADDRESS_COMPANY "%m" #define ADDRESS_COMPANY_UPPER "%M" #define ADDRESS_POBOX "%p" @@ -945,8 +945,10 @@ parse_address_template_section (const gchar *format, switch (pos[1]) { case 'n': - g_string_append (res, realname); - ret = TRUE; + if (realname && *realname) { + g_string_append (res, realname); + ret = TRUE; + } pos += 2; /* Jump behind the modifier, see what's next */ break; case 'N': @@ -1119,9 +1121,12 @@ eab_format_address (EContact *contact, } /* Expand all the variables in format. - * Don't display organization in home address */ + * Don't display organization in home address; + * and skip full names, as it's part of the EContact itself, + * check this bug for reason: https://bugzilla.gnome.org/show_bug.cgi?id=667912 + */ parse_address_template_section (format, - e_contact_get_const (contact, E_CONTACT_FULL_NAME), + NULL, (address_type == E_CONTACT_ADDRESS_WORK) ? e_contact_get_const (contact, E_CONTACT_ORG): NULL, addr, &result); |