From eb16610ca83c149cf69344777fa1511396a9ca6b Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Tue, 25 Aug 2009 13:36:07 +0300 Subject: 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. --- src/ephy-session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ephy-session.c') 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", -- cgit