diff options
author | Larry Ewing <lewing@src.gnome.org> | 2003-04-09 16:25:24 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2003-04-09 16:25:24 +0800 |
commit | 1034abae465596ec3fca34910c772eaef569287f (patch) | |
tree | 5c236f152461286f982e5bf17bc506d8cc832b88 | |
parent | 644d6945827035dfecf86467e83e3eeeed31b79b (diff) | |
download | gsoc2013-evolution-1034abae465596ec3fca34910c772eaef569287f.tar gsoc2013-evolution-1034abae465596ec3fca34910c772eaef569287f.tar.gz gsoc2013-evolution-1034abae465596ec3fca34910c772eaef569287f.tar.bz2 gsoc2013-evolution-1034abae465596ec3fca34910c772eaef569287f.tar.lz gsoc2013-evolution-1034abae465596ec3fca34910c772eaef569287f.tar.xz gsoc2013-evolution-1034abae465596ec3fca34910c772eaef569287f.tar.zst gsoc2013-evolution-1034abae465596ec3fca34910c772eaef569287f.zip |
Commit the right version.
svn path=/trunk/; revision=20778
-rw-r--r-- | shell/e-shell-importer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index 327f2a1ce2..bc03ab4417 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -176,8 +176,8 @@ create_html (const char *name) if (!style) style = gtk_widget_get_style (html); if (style) { - gtk_widget_modify_base (html, &style->bg[GTK_STATE_NORMAL]); - gtk_widget_modify_text (html, &style->fg[GTK_STATE_NORMAL]); + gtk_widget_modify_base (html, GTK_STATE_NORMAL, &style->bg[GTK_STATE_NORMAL]); + gtk_widget_modify_text (html, GTK_STATE_NORMAL, &style->fg[GTK_STATE_NORMAL]); } gtk_widget_show (html); |