From a687435a74646d259a0112a0c33f96817568b765 Mon Sep 17 00:00:00 2001 From: Hans Petter Jansson Date: Thu, 18 Mar 2004 00:59:14 +0000 Subject: Fixes #53625. 2004-03-17 Hans Petter Jansson Fixes #53625. * gui/widgets/eab-contact-display.c (render_contact): Show home and mobile phone numbers too. svn path=/trunk/; revision=25107 --- addressbook/ChangeLog | 7 +++++++ addressbook/gui/widgets/eab-contact-display.c | 2 ++ 2 files changed, 9 insertions(+) (limited to 'addressbook') diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index b472de0e6b..31baa3aacf 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2004-03-17 Hans Petter Jansson + + Fixes #53625. + + * gui/widgets/eab-contact-display.c (render_contact): Show home and + mobile phone numbers too. + 2004-03-15 Sivaiah Nallagatla * gui/contact-editor/e-contact-editor.c (enable_writable_fields) : 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) { -- cgit v1.2.3