diff options
author | Xan Lopez <xan@gnome.org> | 2009-08-25 18:36:07 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-08-25 18:36:07 +0800 |
commit | eb16610ca83c149cf69344777fa1511396a9ca6b (patch) | |
tree | 4fd7b74577651e71cd235f0b0f0ac0b20155bf94 /src/ephy-window.c | |
parent | 5bd0ebcc3daa9d847e484890a874905208395d80 (diff) | |
download | gsoc2013-epiphany-eb16610ca83c149cf69344777fa1511396a9ca6b.tar gsoc2013-epiphany-eb16610ca83c149cf69344777fa1511396a9ca6b.tar.gz gsoc2013-epiphany-eb16610ca83c149cf69344777fa1511396a9ca6b.tar.bz2 gsoc2013-epiphany-eb16610ca83c149cf69344777fa1511396a9ca6b.tar.lz gsoc2013-epiphany-eb16610ca83c149cf69344777fa1511396a9ca6b.tar.xz gsoc2013-epiphany-eb16610ca83c149cf69344777fa1511396a9ca6b.tar.zst gsoc2013-epiphany-eb16610ca83c149cf69344777fa1511396a9ca6b.zip |
Rename ephy_web_view_get_load_status to ephy_web_view_is_loading
Much more clear, and avoids confusions with the WebKitWebView function
with similar name.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 51de4b4f5..8407104d2 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -1624,7 +1624,7 @@ sync_tab_load_progress (EphyWebView *view, GParamSpec *pspec, EphyWindow *window for about:blank until the load is finished, so assume NULL here means we are loading about:blank. This might not be rigt :) */ - loading = ephy_web_view_get_load_status (view); + loading = ephy_web_view_is_loading (view); uri = webkit_web_view_get_uri (WEBKIT_WEB_VIEW (view)); if (loading && (!uri || strcmp (uri, "about:blank") == 0)) return; @@ -1869,7 +1869,7 @@ sync_tab_load_status (EphyWebView *view, if (window->priv->closing) return; - loading = ephy_web_view_get_load_status (view); + loading = ephy_web_view_is_loading (view); action = gtk_action_group_get_action (action_group, "ViewStop"); gtk_action_set_sensitive (action, loading); |