aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed.c
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2010-05-02 21:57:42 +0800
committerXan Lopez <xan@gnome.org>2010-05-03 19:40:33 +0800
commit64468d01ba26f414eefff08541caf4c6f6168ffb (patch)
treee18b4e583d615b0015252db31fd5f57c5a92f8dd /embed/ephy-embed.c
parentfb45861008ad3bc272ef50f11c37be64078ff7bd (diff)
downloadgsoc2013-epiphany-64468d01ba26f414eefff08541caf4c6f6168ffb.tar
gsoc2013-epiphany-64468d01ba26f414eefff08541caf4c6f6168ffb.tar.gz
gsoc2013-epiphany-64468d01ba26f414eefff08541caf4c6f6168ffb.tar.bz2
gsoc2013-epiphany-64468d01ba26f414eefff08541caf4c6f6168ffb.tar.lz
gsoc2013-epiphany-64468d01ba26f414eefff08541caf4c6f6168ffb.tar.xz
gsoc2013-epiphany-64468d01ba26f414eefff08541caf4c6f6168ffb.tar.zst
gsoc2013-epiphany-64468d01ba26f414eefff08541caf4c6f6168ffb.zip
Move link message updating to EphyWebView
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r--embed/ephy-embed.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c
index 5f1a39177..a7758f9e0 100644
--- a/embed/ephy-embed.c
+++ b/embed/ephy-embed.c
@@ -170,15 +170,6 @@ load_status_changed_cb (WebKitWebView *view,
}
static void
-hovering_over_link_cb (WebKitWebView *web_view,
- char *title,
- char *location,
- EphyEmbed *embed)
-{
- ephy_web_view_set_link_message (EPHY_WEB_VIEW (web_view), location);
-}
-
-static void
zoom_changed_cb (WebKitWebView *web_view,
GParamSpec *pspec,
EphyEmbed *embed)
@@ -806,7 +797,6 @@ ephy_embed_constructed (GObject *object)
g_object_connect (web_view,
"signal::notify::load-status", G_CALLBACK (load_status_changed_cb), embed,
"signal::resource-request-starting", G_CALLBACK (resource_request_starting_cb), embed,
- "signal::hovering-over-link", G_CALLBACK (hovering_over_link_cb), embed,
"signal::download-requested", G_CALLBACK (download_requested_cb), embed,
"signal::notify::zoom-level", G_CALLBACK (zoom_changed_cb), embed,
NULL);