diff options
author | Xan Lopez <xan@gnome.org> | 2009-06-17 04:27:49 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-06-17 04:28:29 +0800 |
commit | da2040aa0dbc67ff27f7ae28da0fccd803f051bf (patch) | |
tree | 0ff7b7c0fe081f1e4faf4d62d9e65893fb957280 /embed/ephy-web-view.c | |
parent | 2e1e3e4fff9641bfa633f92502f50c2261641048 (diff) | |
download | gsoc2013-epiphany-da2040aa0dbc67ff27f7ae28da0fccd803f051bf.tar gsoc2013-epiphany-da2040aa0dbc67ff27f7ae28da0fccd803f051bf.tar.gz gsoc2013-epiphany-da2040aa0dbc67ff27f7ae28da0fccd803f051bf.tar.bz2 gsoc2013-epiphany-da2040aa0dbc67ff27f7ae28da0fccd803f051bf.tar.lz gsoc2013-epiphany-da2040aa0dbc67ff27f7ae28da0fccd803f051bf.tar.xz gsoc2013-epiphany-da2040aa0dbc67ff27f7ae28da0fccd803f051bf.tar.zst gsoc2013-epiphany-da2040aa0dbc67ff27f7ae28da0fccd803f051bf.zip |
ephy-web-view.c: do not try to get the EphyWebView inside an EphyWebView.
Not many chances it will work.
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r-- | embed/ephy-web-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 5cbaa7c70..4a01290da 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -1393,7 +1393,7 @@ ephy_web_view_file_monitor_reload_cb (EphyWebView *view) priv->reload_scheduled_id = 0; LOG ("Reloading file '%s'", ephy_web_view_get_address (view)); - webkit_web_view_reload (EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (view)); + webkit_web_view_reload (WEBKIT_WEB_VIEW (view)); /* don't run again */ return FALSE; |