aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-session.c
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2009-08-25 18:36:07 +0800
committerXan Lopez <xan@gnome.org>2009-08-25 18:36:07 +0800
commiteb16610ca83c149cf69344777fa1511396a9ca6b (patch)
tree4fd7b74577651e71cd235f0b0f0ac0b20155bf94 /src/ephy-session.c
parent5bd0ebcc3daa9d847e484890a874905208395d80 (diff)
downloadgsoc2013-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-session.c')
-rw-r--r--src/ephy-session.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-session.c b/src/ephy-session.c
index f85cc4fdf..e4c158749 100644
--- a/src/ephy-session.c
+++ b/src/ephy-session.c
@@ -380,7 +380,7 @@ load_status_notify_cb (EphyWebView *view,
GParamSpec *pspec,
EphySession *session)
{
- if (ephy_web_view_get_load_status (view) == FALSE)
+ if (ephy_web_view_is_loading (view) == FALSE)
ephy_session_save (session, SESSION_CRASHED);
}
@@ -1039,7 +1039,7 @@ write_tab (xmlTextWriterPtr writer,
(const xmlChar *) title);
if (ret < 0) return ret;
- if (ephy_web_view_get_load_status (EPHY_GET_EPHY_WEB_VIEW_FROM_EMBED (embed)))
+ if (ephy_web_view_is_loading (EPHY_GET_EPHY_WEB_VIEW_FROM_EMBED (embed)))
{
ret = xmlTextWriterWriteAttribute (writer,
(const xmlChar *) "loading",