aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary.c
diff options
context:
space:
mode:
Diffstat (limited to 'my-evolution/e-summary.c')
-rw-r--r--my-evolution/e-summary.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c
index 300b44e14f..5c821605a4 100644
--- a/my-evolution/e-summary.c
+++ b/my-evolution/e-summary.c
@@ -502,7 +502,6 @@ e_summary_init (ESummary *summary)
{
GConfClient *gconf_client;
ESummaryPrivate *priv;
- GdkColor bgcolor = {0, 0xffff, 0xffff, 0xffff};
char *def;
summary->priv = g_new (ESummaryPrivate, 1);
@@ -520,7 +519,7 @@ e_summary_init (ESummary *summary)
gtk_html_set_editable (GTK_HTML (priv->html), FALSE);
gtk_html_set_default_content_type (GTK_HTML (priv->html),
"text/html; charset=utf-8");
- gtk_html_set_default_background_color (GTK_HTML (priv->html), &bgcolor);
+
def = g_strdup_printf (DEFAULT_HTML, _("Please wait..."));
gtk_html_load_from_string (GTK_HTML (priv->html), def, strlen (def));
g_free (def);