diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2004-03-18 08:59:14 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2004-03-18 08:59:14 +0800 |
commit | a687435a74646d259a0112a0c33f96817568b765 (patch) | |
tree | eb99f4948c5f0d70b391ced87f631db3e6f6645e | |
parent | ba86d1ae8d12531b951b04fe11985f56640ad945 (diff) | |
download | gsoc2013-evolution-a687435a74646d259a0112a0c33f96817568b765.tar.gz 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
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 2 |
2 files changed, 9 insertions, 0 deletions
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 <hpj@ximian.com> + + Fixes #53625. + + * gui/widgets/eab-contact-display.c (render_contact): Show home and + mobile phone numbers too. + 2004-03-15 Sivaiah Nallagatla <snallagatla@novell.com> * 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) { |