diff options
author | Xan Lopez <xan@src.gnome.org> | 2008-07-03 03:25:25 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2008-07-03 03:25:25 +0800 |
commit | c5f616f5c4e904d4fc57f49290952db3cd8a68d8 (patch) | |
tree | 3a27ccfe880f1adcb30aa932665ebe4810b18b06 /embed/webkit/webkit-embed.c | |
parent | 1a2c45a09867791d52cd74b280395dd646162523 (diff) | |
download | gsoc2013-epiphany-c5f616f5c4e904d4fc57f49290952db3cd8a68d8.tar gsoc2013-epiphany-c5f616f5c4e904d4fc57f49290952db3cd8a68d8.tar.gz gsoc2013-epiphany-c5f616f5c4e904d4fc57f49290952db3cd8a68d8.tar.bz2 gsoc2013-epiphany-c5f616f5c4e904d4fc57f49290952db3cd8a68d8.tar.lz gsoc2013-epiphany-c5f616f5c4e904d4fc57f49290952db3cd8a68d8.tar.xz gsoc2013-epiphany-c5f616f5c4e904d4fc57f49290952db3cd8a68d8.tar.zst gsoc2013-epiphany-c5f616f5c4e904d4fc57f49290952db3cd8a68d8.zip |
embed: remove ephy_embed_close.
Just destroy the embed widget.
svn path=/trunk/; revision=8332
Diffstat (limited to 'embed/webkit/webkit-embed.c')
-rw-r--r-- | embed/webkit/webkit-embed.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/embed/webkit/webkit-embed.c b/embed/webkit/webkit-embed.c index 15fd046fb..4712a9489 100644 --- a/embed/webkit/webkit-embed.c +++ b/embed/webkit/webkit-embed.c @@ -108,12 +108,6 @@ G_DEFINE_TYPE_WITH_CODE (WebKitEmbed, webkit_embed, EPHY_TYPE_BASE_EMBED, ephy_command_manager_iface_init)) static void -impl_close (EphyEmbed *embed) -{ - gtk_widget_destroy (GTK_WIDGET (embed)); -} - -static void webkit_embed_title_changed_cb (WebKitWebView *web_view, WebKitWebFrame *web_frame, const gchar *title, @@ -523,7 +517,6 @@ ephy_embed_iface_init (EphyEmbedIface *iface) iface->scroll_pixels = impl_scroll_pixels; iface->shistory_copy = impl_shistory_copy; iface->show_page_certificate = impl_show_page_certificate; - iface->close = impl_close; iface->set_encoding = impl_set_encoding; iface->get_encoding = impl_get_encoding; iface->has_automatic_encoding = impl_has_automatic_encoding; |