aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary-mail.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-03-28 05:37:07 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-03-28 05:37:07 +0800
commitc6ed3eedc881b57ac7d767a282413db7966f8a8b (patch)
tree18ded69ef658a974fc9c012ac09c63c9ed9f3858 /my-evolution/e-summary-mail.c
parenta764639cd2f9f85da377fa6987c10bc1005d74ef (diff)
downloadgsoc2013-evolution-c6ed3eedc881b57ac7d767a282413db7966f8a8b.tar
gsoc2013-evolution-c6ed3eedc881b57ac7d767a282413db7966f8a8b.tar.gz
gsoc2013-evolution-c6ed3eedc881b57ac7d767a282413db7966f8a8b.tar.bz2
gsoc2013-evolution-c6ed3eedc881b57ac7d767a282413db7966f8a8b.tar.lz
gsoc2013-evolution-c6ed3eedc881b57ac7d767a282413db7966f8a8b.tar.xz
gsoc2013-evolution-c6ed3eedc881b57ac7d767a282413db7966f8a8b.tar.zst
gsoc2013-evolution-c6ed3eedc881b57ac7d767a282413db7966f8a8b.zip
Likewise.
* e-summary.c (e_summary_init): Likewise. * e-summary-weather.c (e_summary_weather_get_html): Likewise. (weather_make_html): Likewise. * e-summary-mail.c (e_summary_mail_generate_html): Fix so it handles the fact that the translated strings are already in UTF8. * e-summary-rdf.c (tree_walk): Likewise. (display_doc): Likewise. svn path=/trunk/; revision=20553
Diffstat (limited to 'my-evolution/e-summary-mail.c')
-rw-r--r--my-evolution/e-summary-mail.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/my-evolution/e-summary-mail.c b/my-evolution/e-summary-mail.c
index 94b7ec8aa2..51513f23b1 100644
--- a/my-evolution/e-summary-mail.c
+++ b/my-evolution/e-summary-mail.c
@@ -176,7 +176,7 @@ e_summary_mail_generate_html (ESummary *summary)
ESummaryMail *mail;
GString *string;
GList *p;
- char *s, *old;
+ char *old;
g_return_if_fail (summary != NULL);
g_return_if_fail (IS_E_SUMMARY (summary));
@@ -185,9 +185,7 @@ e_summary_mail_generate_html (ESummary *summary)
string = g_string_new ("<dl><dt><img src=\"myevo-mail-summary.png\" "
"align=\"middle\" alt=\"\" width=\"48\" "
"height=\"48\"> <b><a href=\"evolution:/local/Inbox\">");
- s = e_utf8_from_locale_string (_("Mail summary"));
- g_string_append (string, s);
- g_free (s);
+ g_string_append (string, _("Mail summary"));
g_string_append (string, "</a></b></dt><dd><table numcols=\"2\" width=\"100%\">");
for (p = folder_store->shown; p; p = p->next) {