diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-08-22 18:37:18 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-08-22 18:37:18 +0800 |
commit | 879ed4784ca4f90e0992c4627e45965e48c85a6b (patch) | |
tree | a3c6bba9e8bac787da50e1e434599a037bf9b5d8 /addressbook/gui | |
parent | c9f3f90495ce3a9dea36e5923bab3e241325f36c (diff) | |
download | gsoc2013-evolution-879ed4784ca4f90e0992c4627e45965e48c85a6b.tar.gz gsoc2013-evolution-879ed4784ca4f90e0992c4627e45965e48c85a6b.tar.zst gsoc2013-evolution-879ed4784ca4f90e0992c4627e45965e48c85a6b.zip |
Using e_contact_get() for E_CONTACT_IS_LIST. See #314152.
Patch submitted by "ross@burtonini.com (Ross Burton)".
svn path=/trunk/; revision=30197
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c index 8613d92e3e..d96c1a323d 100644 --- a/addressbook/gui/widgets/eab-contact-display.c +++ b/addressbook/gui/widgets/eab-contact-display.c @@ -412,7 +412,8 @@ eab_contact_display_render_normal (EABContactDisplay *display, EContact *contact gtk_html_stream_write (html_stream, "<body>\n", 7); if (contact) { - char *str, *html; + const char *str; + char *html; EContactPhoto *photo; gtk_html_stream_printf (html_stream, "<table cellspacing=\"20\" border=\"0\"><td valign=\"top\">"); @@ -437,7 +438,7 @@ eab_contact_display_render_normal (EABContactDisplay *display, EContact *contact } - if (e_contact_get_const (contact, E_CONTACT_IS_LIST)) + if (e_contact_get (contact, E_CONTACT_IS_LIST)) render_contact_list (html_stream, contact); else render_contact (html_stream, contact); @@ -465,7 +466,8 @@ eab_contact_display_render_compact (EABContactDisplay *display, EContact *contac gtk_html_stream_write (html_stream, "<body>\n", 7); if (contact) { - char *str, *html; + const char *str; + char *html; EContactPhoto *photo; gtk_html_stream_printf (html_stream, |