aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-08-18 15:21:35 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-09-14 20:08:51 +0800
commit50165add499b92a1ca4be5bb866d1608e53f1878 (patch)
tree33517136cc4fe305e664005c31eda70d1fd72569 /addressbook
parent40875ac66f4ef93be31318425e89a6642d5cf0db (diff)
downloadgsoc2013-evolution-50165add499b92a1ca4be5bb866d1608e53f1878.tar
gsoc2013-evolution-50165add499b92a1ca4be5bb866d1608e53f1878.tar.gz
gsoc2013-evolution-50165add499b92a1ca4be5bb866d1608e53f1878.tar.bz2
gsoc2013-evolution-50165add499b92a1ca4be5bb866d1608e53f1878.tar.lz
gsoc2013-evolution-50165add499b92a1ca4be5bb866d1608e53f1878.tar.xz
gsoc2013-evolution-50165add499b92a1ca4be5bb866d1608e53f1878.tar.zst
gsoc2013-evolution-50165add499b92a1ca4be5bb866d1608e53f1878.zip
Do not show IM icons, a workaround till bug #473862 is fixed
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/gui/widgets/eab-contact-display.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c
index 76516fc119..56a2511d64 100644
--- a/addressbook/gui/widgets/eab-contact-display.c
+++ b/addressbook/gui/widgets/eab-contact-display.c
@@ -365,6 +365,11 @@ accum_multival_attribute (GString *buffer,
{
GList *val_list, *l;
+ /* Workaround till bug [1] is fixed.
+ [1] https://bugzilla.gnome.org/show_bug.cgi?id=473862
+ */
+ icon = NULL;
+
val_list = e_contact_get (contact, field);
for (l = val_list; l; l = l->next) {
const gchar *str = (const gchar *) l->data;