aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution
diff options
context:
space:
mode:
Diffstat (limited to 'my-evolution')
-rw-r--r--my-evolution/ChangeLog5
-rw-r--r--my-evolution/e-summary.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index abc453fd4c..25cc0c05bb 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,3 +1,8 @@
+2003-04-09 Larry Ewing <lewing@ximian.com>
+
+ * e-summary.c (e_summary_init): remove call to
+ gtkhtml_set_default_background_color
+
2003-04-08 Not Zed <NotZed@Ximian.com>
* GNOME_Evolution_Summary.server.in.in: Properly terminate the
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);