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 /src/ephy-window.c | |
parent | 1a2c45a09867791d52cd74b280395dd646162523 (diff) | |
download | gsoc2013-epiphany-c5f616f5c4e904d4fc57f49290952db3cd8a68d8.tar.gz 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 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index ad31d1682..8fe31d1fd 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -2830,7 +2830,7 @@ notebook_page_close_request_cb (EphyNotebook *notebook, if (!ephy_embed_has_modified_forms (embed) || confirm_close_with_modified_forms (window)) { - ephy_embed_close (embed); + gtk_widget_destroy (GTK_WIDGET (embed)); } } |