aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-notebook.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-notebook.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-notebook.c')
-rw-r--r--src/ephy-notebook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index bcc7de531..ff8815553 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -509,7 +509,7 @@ sync_load_status (EphyWebView *view, GParamSpec *pspec, GtkWidget *proxy)
icon = GTK_WIDGET (g_object_get_data (G_OBJECT (proxy), "icon"));
g_return_if_fail (spinner != NULL && icon != NULL);
- if (ephy_web_view_get_load_status (view))
+ if (ephy_web_view_is_loading (view))
{
gtk_widget_hide (icon);
gtk_widget_show (spinner);