diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-02-02 09:09:24 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-02-02 09:11:26 +0800 |
commit | 0149582ef3d39e8e69c746e167a42356983b79d9 (patch) | |
tree | 9274a33428130fc92cd1d208a6318c998bbc2a4e /src/ephy-shell.c | |
parent | d3f48332910e5f46e0d3599c771a99d709b0b780 (diff) | |
download | gsoc2013-epiphany-0149582ef3d39e8e69c746e167a42356983b79d9.tar.gz gsoc2013-epiphany-0149582ef3d39e8e69c746e167a42356983b79d9.tar.zst gsoc2013-epiphany-0149582ef3d39e8e69c746e167a42356983b79d9.zip |
Clean uneeded EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED
We now have ephy_embed_get_web_view, EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED plus
EPHY_WEB_VIEW casts are useless.
Bug #608749
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r-- | src/ephy-shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 3ae1a0b7a..e276731a8 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -397,7 +397,7 @@ load_homepage (EphyEmbed *embed) } is_empty = url_is_empty (home); - ephy_web_view_load_url (EPHY_WEB_VIEW (EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (embed)), home); + ephy_web_view_load_url (ephy_embed_get_web_view (embed), home); g_free (home); |