diff options
author | Milan Crha <mcrha@redhat.com> | 2011-08-18 15:21:35 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-08-18 15:21:35 +0800 |
commit | cfd3c3116ba35950497d24eedb28bd7064fb459a (patch) | |
tree | 913507524aeeda8b96d8b8dfc20ef1dc3ec8f824 /addressbook | |
parent | 31a00721343016518b458aae5c2045b32785256f (diff) | |
download | gsoc2013-evolution-cfd3c3116ba35950497d24eedb28bd7064fb459a.tar.gz gsoc2013-evolution-cfd3c3116ba35950497d24eedb28bd7064fb459a.tar.zst gsoc2013-evolution-cfd3c3116ba35950497d24eedb28bd7064fb459a.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.c | 5 |
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; |