diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-10-20 23:15:41 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-10-20 23:15:41 +0800 |
commit | 7a6be11ea62647cba65625b2f65b944f22e65288 (patch) | |
tree | 8f41115a00c37265259b35df7c0a7c7d80736f61 /e-util | |
parent | 431d7188c500d2879b015a308513e7388be19b00 (diff) | |
download | gsoc2013-evolution-7a6be11ea62647cba65625b2f65b944f22e65288.tar.gz gsoc2013-evolution-7a6be11ea62647cba65625b2f65b944f22e65288.tar.zst gsoc2013-evolution-7a6be11ea62647cba65625b2f65b944f22e65288.zip |
Miscellaeous cleanups.
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-web-view.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/e-util/e-web-view.c b/e-util/e-web-view.c index b60dce3128..2f614dc208 100644 --- a/e-util/e-web-view.c +++ b/e-util/e-web-view.c @@ -629,7 +629,7 @@ web_view_load_status_changed_cb (WebKitWebView *webkit_web_view, status = webkit_web_view_get_load_status (webkit_web_view); if (status != WEBKIT_LOAD_FINISHED) - return; + return; style_updated_cb (web_view); @@ -1806,11 +1806,11 @@ e_web_view_clear (EWebView *web_view) webkit_web_view_load_html_string ( WEBKIT_WEB_VIEW (web_view), - "<html> \ - <head></head> \ - <body class=\"-e-web-view-background-color -e-web-view-text-color\"></body> \ - </html>", - NULL); + "<html>" + "<head></head>" + "<body class=\"-e-web-view-background-color -e-web-view-text-color\"></body>" + "</html>", + NULL); } void |