diff options
Diffstat (limited to 'src/ephy-session.c')
-rw-r--r-- | src/ephy-session.c | 4 |
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", |