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-shell.c | |
parent | 5bd0ebcc3daa9d847e484890a874905208395d80 (diff) | |
download | gsoc2013-epiphany-eb16610ca83c149cf69344777fa1511396a9ca6b.tar.gz 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-shell.c')
-rw-r--r-- | src/ephy-shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 27f2de784..e6b56d376 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -475,7 +475,7 @@ ephy_shell_new_tab_full (EphyShell *shell, if (embed != NULL) { if (ephy_web_view_get_is_blank (EPHY_GET_EPHY_WEB_VIEW_FROM_EMBED (embed)) && - ephy_web_view_get_load_status (EPHY_GET_EPHY_WEB_VIEW_FROM_EMBED (embed)) == FALSE) + ephy_web_view_is_loading (EPHY_GET_EPHY_WEB_VIEW_FROM_EMBED (embed)) == FALSE) { active_is_blank = TRUE; } |