aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@ximian.com>2004-03-18 08:59:14 +0800
committerHans Petter <hansp@src.gnome.org>2004-03-18 08:59:14 +0800
commita687435a74646d259a0112a0c33f96817568b765 (patch)
treeeb99f4948c5f0d70b391ced87f631db3e6f6645e /addressbook/gui/widgets
parentba86d1ae8d12531b951b04fe11985f56640ad945 (diff)
downloadgsoc2013-evolution-a687435a74646d259a0112a0c33f96817568b765.tar
gsoc2013-evolution-a687435a74646d259a0112a0c33f96817568b765.tar.gz
gsoc2013-evolution-a687435a74646d259a0112a0c33f96817568b765.tar.bz2
gsoc2013-evolution-a687435a74646d259a0112a0c33f96817568b765.tar.lz
gsoc2013-evolution-a687435a74646d259a0112a0c33f96817568b765.tar.xz
gsoc2013-evolution-a687435a74646d259a0112a0c33f96817568b765.tar.zst
gsoc2013-evolution-a687435a74646d259a0112a0c33f96817568b765.zip
Fixes #53625.
2004-03-17 Hans Petter Jansson <hpj@ximian.com> Fixes #53625. * gui/widgets/eab-contact-display.c (render_contact): Show home and mobile phone numbers too. svn path=/trunk/; revision=25107
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r--addressbook/gui/widgets/eab-contact-display.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c
index b27fed110b..d5e62d323a 100644
--- a/addressbook/gui/widgets/eab-contact-display.c
+++ b/addressbook/gui/widgets/eab-contact-display.c
@@ -332,6 +332,8 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact)
accum_attribute (accum, contact, _("WWW"), E_CONTACT_HOMEPAGE_URL, NULL, E_TEXT_TO_HTML_CONVERT_URLS);
accum_attribute (accum, contact, _("Blog"), E_CONTACT_BLOG_URL, NULL, E_TEXT_TO_HTML_CONVERT_URLS);
+ accum_attribute (accum, contact, _("Phone"), E_CONTACT_PHONE_HOME, NULL, 0);
+ accum_attribute (accum, contact, _("Mobile Phone"), E_CONTACT_PHONE_MOBILE, NULL, 0);
accum_address (accum, contact, _("Address"), E_CONTACT_ADDRESS_HOME, E_CONTACT_ADDRESS_LABEL_HOME);
if (accum->len > 0) {