diff options
author | Chris <schaarsc@gmx.de> | 2014-01-22 01:58:12 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-01-22 01:59:16 +0800 |
commit | 0b5057da0807ea4af2f685544e697b3baa5471ab (patch) | |
tree | 35b87e07ce96dabfc152af75c6ea9905123fe0d9 | |
parent | b6b9428fc653c994c7281ea09ca305e9cfceae92 (diff) | |
download | gsoc2013-evolution-0b5057da0807ea4af2f685544e697b3baa5471ab.tar gsoc2013-evolution-0b5057da0807ea4af2f685544e697b3baa5471ab.tar.gz gsoc2013-evolution-0b5057da0807ea4af2f685544e697b3baa5471ab.tar.bz2 gsoc2013-evolution-0b5057da0807ea4af2f685544e697b3baa5471ab.tar.lz gsoc2013-evolution-0b5057da0807ea4af2f685544e697b3baa5471ab.tar.xz gsoc2013-evolution-0b5057da0807ea4af2f685544e697b3baa5471ab.tar.zst gsoc2013-evolution-0b5057da0807ea4af2f685544e697b3baa5471ab.zip |
Bug #721577 - Show Office field in Contact's preview
-rw-r--r-- | addressbook/gui/widgets/eab-contact-formatter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/addressbook/gui/widgets/eab-contact-formatter.c b/addressbook/gui/widgets/eab-contact-formatter.c index 1dd0ec5f57..539a8e5131 100644 --- a/addressbook/gui/widgets/eab-contact-formatter.c +++ b/addressbook/gui/widgets/eab-contact-formatter.c @@ -643,6 +643,7 @@ render_work_column (EABContactFormatter *formatter, accum_attribute (accum, contact, _("Company"), E_CONTACT_ORG, NULL, 0); accum_attribute (accum, contact, _("Department"), E_CONTACT_ORG_UNIT, NULL, 0); + accum_attribute (accum, contact, _("Office"), E_CONTACT_OFFICE, NULL, 0); accum_attribute (accum, contact, _("Profession"), E_CONTACT_ROLE, NULL, 0); accum_attribute (accum, contact, _("Position"), E_CONTACT_TITLE, NULL, 0); accum_attribute (accum, contact, _("Manager"), E_CONTACT_MANAGER, NULL, 0); |