aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary.c
diff options
context:
space:
mode:
authorLarry Ewing <lewing@ximian.com>2003-04-09 16:02:45 +0800
committerLarry Ewing <lewing@src.gnome.org>2003-04-09 16:02:45 +0800
commit73a4fab3f10a11b55a699f3a670ea348cec9cd91 (patch)
treedc1d4d5bb01eb10fc86606b6bcc6ef657cc18928 /my-evolution/e-summary.c
parent21fd865ec00f00fea2c8be5777348314176d1129 (diff)
downloadgsoc2013-evolution-73a4fab3f10a11b55a699f3a670ea348cec9cd91.tar
gsoc2013-evolution-73a4fab3f10a11b55a699f3a670ea348cec9cd91.tar.gz
gsoc2013-evolution-73a4fab3f10a11b55a699f3a670ea348cec9cd91.tar.bz2
gsoc2013-evolution-73a4fab3f10a11b55a699f3a670ea348cec9cd91.tar.lz
gsoc2013-evolution-73a4fab3f10a11b55a699f3a670ea348cec9cd91.tar.xz
gsoc2013-evolution-73a4fab3f10a11b55a699f3a670ea348cec9cd91.tar.zst
gsoc2013-evolution-73a4fab3f10a11b55a699f3a670ea348cec9cd91.zip
remove call to gtkhtml_set_default_background_color
2003-04-09 Larry Ewing <lewing@ximian.com> * e-summary.c (e_summary_init): remove call to gtkhtml_set_default_background_color svn path=/trunk/; revision=20776
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);