diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-11-16 23:03:10 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-11-16 23:03:10 +0800 |
commit | b7d6a7384621691379618b0be22bef0f58b30414 (patch) | |
tree | 378d3377f3290f3461b23f25349579077ff0bdb3 /src/ephy-lockdown.c | |
parent | 1b8bf4b88fb016020c822e5a9208a89ed8ebbdc4 (diff) | |
download | gsoc2013-epiphany-b7d6a7384621691379618b0be22bef0f58b30414.tar.gz gsoc2013-epiphany-b7d6a7384621691379618b0be22bef0f58b30414.tar.zst gsoc2013-epiphany-b7d6a7384621691379618b0be22bef0f58b30414.zip |
And port all the callers in src/
svn path=/trunk/; revision=7695
Diffstat (limited to 'src/ephy-lockdown.c')
-rw-r--r-- | src/ephy-lockdown.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ephy-lockdown.c b/src/ephy-lockdown.c index 526caa5c7..8229aea23 100644 --- a/src/ephy-lockdown.c +++ b/src/ephy-lockdown.c @@ -1,3 +1,4 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Copyright © 2000, 2001, 2002, 2003, 2004 Marco Pesenti Gritti * Copyright © 2003, 2004, 2005 Christian Persch @@ -21,6 +22,7 @@ #include "config.h" +#include "ephy-embed-container.h" #include "ephy-lockdown.h" #include "ephy-extension.h" #include "ephy-action-helper.h" @@ -98,7 +100,7 @@ update_location_editable (EphyWindow *window, if (editable == FALSE) { toolbar = ephy_window_get_toolbar (window); - embed = ephy_window_get_active_tab (window); + embed = ephy_embed_container_get_active_child (EPHY_EMBED_CONTAINER (window)); /* embed is NULL on startup */ if (embed != NULL) { |