From 3cfe8dad1685189ce0ae300a50114b5896e79e9f Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Tue, 17 Apr 2012 19:08:52 +0200 Subject: Bug #667912 - Remove name field from formatted address label --- addressbook/gui/widgets/eab-gui-util.c | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'addressbook/gui') 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 /* 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); -- cgit v1.2.3