aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-06-23 19:31:30 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-06-23 19:31:30 +0800
commitffb5879a05e93cc4c5ab70c2796e00e99d1c11ff (patch)
treefe9ef211c439f7de17f10b874d5f67ecdb1205a3 /src
parent50c50f2771be312a4836a14252122c6b828aa2a9 (diff)
downloadgsoc2013-epiphany-ffb5879a05e93cc4c5ab70c2796e00e99d1c11ff.tar
gsoc2013-epiphany-ffb5879a05e93cc4c5ab70c2796e00e99d1c11ff.tar.gz
gsoc2013-epiphany-ffb5879a05e93cc4c5ab70c2796e00e99d1c11ff.tar.bz2
gsoc2013-epiphany-ffb5879a05e93cc4c5ab70c2796e00e99d1c11ff.tar.lz
gsoc2013-epiphany-ffb5879a05e93cc4c5ab70c2796e00e99d1c11ff.tar.xz
gsoc2013-epiphany-ffb5879a05e93cc4c5ab70c2796e00e99d1c11ff.tar.zst
gsoc2013-epiphany-ffb5879a05e93cc4c5ab70c2796e00e99d1c11ff.zip
fix warning
Diffstat (limited to 'src')
-rwxr-xr-xsrc/ppview-toolbar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ppview-toolbar.c b/src/ppview-toolbar.c
index 48706a822..922b54a15 100755
--- a/src/ppview-toolbar.c
+++ b/src/ppview-toolbar.c
@@ -380,7 +380,7 @@ toolbar_cmd_ppv_close (EggMenuMerge *merge,
{
EphyWindow *window = t->priv->window;
EphyEmbed *embed;
- EphyNotebook *notebook;
+ GtkWidget *notebook;
embed = ephy_window_get_active_embed (window);
g_return_if_fail (embed != NULL);
@@ -388,7 +388,7 @@ toolbar_cmd_ppv_close (EggMenuMerge *merge,
ephy_window_set_chrome (t->priv->window, t->priv->original_mask);
notebook = ephy_window_get_notebook (window);
- ephy_notebook_set_show_tabs (notebook, TRUE);
+ ephy_notebook_set_show_tabs (EPHY_NOTEBOOK (notebook), TRUE);
ephy_embed_print_preview_close (embed);
}