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/gui/widgets/eab-contact-display.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'addressbook/gui') 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