From 17ce73241195003a3bedd2fad88288e4350a6ec5 Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Tue, 13 Apr 2004 20:26:50 +0000 Subject: disable the map link for 2.0. 2004-04-13 Chris Toshok * gui/widgets/eab-contact-display.c (accum_address): disable the map link for 2.0. svn path=/trunk/; revision=25447 --- addressbook/ChangeLog | 5 +++++ addressbook/gui/widgets/eab-contact-display.c | 4 ++++ 2 files changed, 9 insertions(+) (limited to 'addressbook') diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 36c8e0c231..1a2a8bb439 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2004-04-13 Chris Toshok + + * gui/widgets/eab-contact-display.c (accum_address): disable the + map link for 2.0. + 2004-04-13 Larry Ewing * gui/widgets/e-addressbook-view.c (create_table_view): add diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c index a1dc832550..f81ff673ad 100644 --- a/addressbook/gui/widgets/eab-contact-display.c +++ b/addressbook/gui/widgets/eab-contact-display.c @@ -176,7 +176,11 @@ accum_address (GString *gstr, EContact *contact, const char *html_label, EContac if (label) { char *html = e_text_to_html (label, E_TEXT_TO_HTML_CONVERT_NL); +#if mapping_works g_string_append_printf (gstr, "%s:
%s%s", html_label, _("(map)"), html); +#else + g_string_append_printf (gstr, "%s:%s", html_label, html); +#endif g_free (html); return; -- cgit