aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/eab-contact-display.c
diff options
context:
space:
mode:
authorDevashish Sharma <dsharma@src.gnome.org>2006-07-24 21:06:20 +0800
committerDevashish Sharma <dsharma@src.gnome.org>2006-07-24 21:06:20 +0800
commitcd009b33d7b82d4965d5b43953f2b191c67b40dd (patch)
tree8a38840b956e65178c6c1e188f8ef701dd1573c7 /addressbook/gui/widgets/eab-contact-display.c
parent3a4f1cbc3aeff201b997b96190b36b42a41caffe (diff)
downloadgsoc2013-evolution-cd009b33d7b82d4965d5b43953f2b191c67b40dd.tar
gsoc2013-evolution-cd009b33d7b82d4965d5b43953f2b191c67b40dd.tar.gz
gsoc2013-evolution-cd009b33d7b82d4965d5b43953f2b191c67b40dd.tar.bz2
gsoc2013-evolution-cd009b33d7b82d4965d5b43953f2b191c67b40dd.tar.lz
gsoc2013-evolution-cd009b33d7b82d4965d5b43953f2b191c67b40dd.tar.xz
gsoc2013-evolution-cd009b33d7b82d4965d5b43953f2b191c67b40dd.tar.zst
gsoc2013-evolution-cd009b33d7b82d4965d5b43953f2b191c67b40dd.zip
Added support for gadu gadu im in contact entry.
svn path=/trunk/; revision=32407
Diffstat (limited to 'addressbook/gui/widgets/eab-contact-display.c')
-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 f9d85c9c7f..9729b97eb4 100644
--- a/addressbook/gui/widgets/eab-contact-display.c
+++ b/addressbook/gui/widgets/eab-contact-display.c
@@ -71,6 +71,7 @@ common_location [] =
#define JABBER_ICON "im-jabber"
#define MSN_ICON "im-msn"
#define YAHOO_ICON "im-yahoo"
+#define GADUGADU_ICON "im-gadugadu"
#define VIDEOCONF_ICON "stock_video-conferencing"
#define MAX_COMPACT_IMAGE_DIMENSION 48
@@ -558,6 +559,7 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact)
accum_multival_attribute (accum, contact, _("Jabber"), E_CONTACT_IM_JABBER, JABBER_ICON, 0);
accum_multival_attribute (accum, contact, _("MSN"), E_CONTACT_IM_MSN, MSN_ICON, 0);
accum_multival_attribute (accum, contact, _("Yahoo"), E_CONTACT_IM_YAHOO, YAHOO_ICON, 0);
+ accum_multival_attribute (accum, contact, _("Gadu-Gadu"), E_CONTACT_IM_GADUGADU, GADUGADU_ICON, 0);
if (accum->len > 0)
gtk_html_stream_printf (html_stream, "%s", accum->str);