diff options
author | Chris Toshok <toshok@ximian.com> | 2004-02-27 04:13:44 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-02-27 04:13:44 +0800 |
commit | 48aa97b3a8bf1db84b96202ad91bfbd5e52a92aa (patch) | |
tree | 5cb861fb21db6cbd6847700e705fa247a5a32b42 /addressbook/gui/widgets | |
parent | ed71a8cb94a3bb163f74f2dc66dc58dcafd9185f (diff) | |
download | gsoc2013-evolution-48aa97b3a8bf1db84b96202ad91bfbd5e52a92aa.tar.gz gsoc2013-evolution-48aa97b3a8bf1db84b96202ad91bfbd5e52a92aa.tar.zst gsoc2013-evolution-48aa97b3a8bf1db84b96202ad91bfbd5e52a92aa.zip |
add the Groupwise IM attributes to the list of those we render.
2004-02-26 Chris Toshok <toshok@ximian.com>
* gui/widgets/eab-contact-display.c (render_contact): add the
Groupwise IM attributes to the list of those we render.
svn path=/trunk/; revision=24895
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c index e0fe15dc17..c1ceb7c335 100644 --- a/addressbook/gui/widgets/eab-contact-display.c +++ b/addressbook/gui/widgets/eab-contact-display.c @@ -47,6 +47,7 @@ struct _EABContactDisplayPrivate { #define IMAGE_COL_WIDTH "20" #define CONTACT_LIST_ICON "contact-list-16.png" #define AIM_ICON "im-aim.png" +#define GROUPWISE_ICON "im-nov.png" #define ICQ_ICON "im-icq.png" #define JABBER_ICON "im-jabber.png" #define MSN_ICON "im-msn.png" @@ -238,11 +239,12 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact) render_attribute (html_stream, contact, _("Organization"), E_CONTACT_ORG, NULL, 0); render_attribute (html_stream, contact, _("Position"), E_CONTACT_TITLE, NULL, 0); - render_attribute (html_stream, contact, _("ICQ"), E_CONTACT_IM_ICQ_WORK_1, ICQ_ICON, 0); render_attribute (html_stream, contact, _("AIM"), E_CONTACT_IM_AIM_WORK_1, AIM_ICON, 0); + render_attribute (html_stream, contact, _("Groupwise"), E_CONTACT_IM_GROUPWISE_WORK_1, GROUPWISE_ICON, 0); + render_attribute (html_stream, contact, _("ICQ"), E_CONTACT_IM_ICQ_WORK_1, ICQ_ICON, 0); + render_attribute (html_stream, contact, _("Jabber"), E_CONTACT_IM_JABBER_WORK_1, JABBER_ICON, 0); render_attribute (html_stream, contact, _("MSN"), E_CONTACT_IM_MSN_WORK_1, MSN_ICON, 0); render_attribute (html_stream, contact, _("Yahoo"), E_CONTACT_IM_YAHOO_WORK_1, YAHOO_ICON, 0); - render_attribute (html_stream, contact, _("Jabber"), E_CONTACT_IM_JABBER_WORK_1, JABBER_ICON, 0); render_attribute (html_stream, contact, _("Video Conferencing"), E_CONTACT_VIDEO_URL, VIDEOCONF_ICON, E_TEXT_TO_HTML_CONVERT_URLS); render_attribute (html_stream, contact, _("Phone"), E_CONTACT_PHONE_BUSINESS, NULL, 0); render_attribute (html_stream, contact, _("Fax"), E_CONTACT_PHONE_BUSINESS_FAX, NULL, 0); @@ -252,11 +254,12 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact) start_block (html_stream, _("personal")); - render_attribute (html_stream, contact, _("ICQ"), E_CONTACT_IM_ICQ_HOME_1, ICQ_ICON, 0); render_attribute (html_stream, contact, _("AIM"), E_CONTACT_IM_AIM_HOME_1, AIM_ICON, 0); + render_attribute (html_stream, contact, _("Groupwise"), E_CONTACT_IM_GROUPWISE_HOME_1, GROUPWISE_ICON, 0); + render_attribute (html_stream, contact, _("ICQ"), E_CONTACT_IM_ICQ_HOME_1, ICQ_ICON, 0); + render_attribute (html_stream, contact, _("Jabber"), E_CONTACT_IM_JABBER_HOME_1, JABBER_ICON, 0); render_attribute (html_stream, contact, _("MSN"), E_CONTACT_IM_MSN_HOME_1, MSN_ICON, 0); render_attribute (html_stream, contact, _("Yahoo"), E_CONTACT_IM_YAHOO_HOME_1, YAHOO_ICON, 0); - render_attribute (html_stream, contact, _("Jabber"), E_CONTACT_IM_JABBER_HOME_1, JABBER_ICON, 0); render_attribute (html_stream, contact, _("WWW"), E_CONTACT_HOMEPAGE_URL, NULL, E_TEXT_TO_HTML_CONVERT_URLS); render_attribute (html_stream, contact, _("Blog"), E_CONTACT_BLOG_URL, NULL, E_TEXT_TO_HTML_CONVERT_URLS); |