diff options
author | Milan Crha <mcrha@redhat.com> | 2008-12-08 19:01:38 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-12-08 19:01:38 +0800 |
commit | 4eed8ee19e71b199239dc12e936e9b3e650eb2fc (patch) | |
tree | a3b9c8175f14ce0b84944c2d9d66da34868b5355 /addressbook/gui/widgets | |
parent | 0694086ab958a0ab21448c5afca1e29091686ed6 (diff) | |
download | gsoc2013-evolution-4eed8ee19e71b199239dc12e936e9b3e650eb2fc.tar gsoc2013-evolution-4eed8ee19e71b199239dc12e936e9b3e650eb2fc.tar.gz gsoc2013-evolution-4eed8ee19e71b199239dc12e936e9b3e650eb2fc.tar.bz2 gsoc2013-evolution-4eed8ee19e71b199239dc12e936e9b3e650eb2fc.tar.lz gsoc2013-evolution-4eed8ee19e71b199239dc12e936e9b3e650eb2fc.tar.xz gsoc2013-evolution-4eed8ee19e71b199239dc12e936e9b3e650eb2fc.tar.zst gsoc2013-evolution-4eed8ee19e71b199239dc12e936e9b3e650eb2fc.zip |
** Fix for bug #270376
2008-12-08 Milan Crha <mcrha@redhat.com>
** Fix for bug #270376
* gui/contact-editor/e-contact-editor.c: (im_service []),
(non_string_fields[]):
* gui/widgets/eab-contact-display.c: (render_contact):
Support Skype field in a contact.
* gui/contact-editor/e-contact-editor-im.c:
Changes here too, but file doesn't seem to be used.
svn path=/trunk/; revision=36849
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 2 |
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 6ee38d41c9..f8a15a06fa 100644 --- a/addressbook/gui/widgets/eab-contact-display.c +++ b/addressbook/gui/widgets/eab-contact-display.c @@ -72,6 +72,7 @@ common_location [] = #define MSN_ICON "im-msn" #define YAHOO_ICON "im-yahoo" #define GADUGADU_ICON "im-gadugadu" +#define SKYPE_ICON "stock_people" #define VIDEOCONF_ICON "stock_video-conferencing" #define MAX_COMPACT_IMAGE_DIMENSION 48 @@ -618,6 +619,7 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact) 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); + accum_multival_attribute (accum, contact, _("Skype"), E_CONTACT_IM_SKYPE, SKYPE_ICON, 0); if (accum->len > 0) gtk_html_stream_printf (html_stream, "%s", accum->str); |