[evolution/gnome-3-4] Bug #667912 - Remove name field from formatted address label
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/gnome-3-4] Bug #667912 - Remove name field from formatted address label
- Date: Tue, 17 Apr 2012 17:09:49 +0000 (UTC)
commit e0d526c5884b3bceaa6fd285b7fa6cd53c5cbe82
Author: Milan Crha <mcrha redhat com>
Date: Tue Apr 17 19:09:25 2012 +0200
Bug #667912 - Remove name field from formatted address label
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 b1c8cdc..56eb02b 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);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]