aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-10-25 21:43:02 +0800
committerChristian Persch <chpe@src.gnome.org>2004-10-25 21:43:02 +0800
commit46d371aa12282b3d8cd8549acb0898071b0097fe (patch)
treedac424e823dccd022ed725fb0a5a9bf6622582c6 /src
parent0994e5f756dca8a0b4bb98da701132b733506a1b (diff)
downloadgsoc2013-epiphany-46d371aa12282b3d8cd8549acb0898071b0097fe.tar
gsoc2013-epiphany-46d371aa12282b3d8cd8549acb0898071b0097fe.tar.gz
gsoc2013-epiphany-46d371aa12282b3d8cd8549acb0898071b0097fe.tar.bz2
gsoc2013-epiphany-46d371aa12282b3d8cd8549acb0898071b0097fe.tar.lz
gsoc2013-epiphany-46d371aa12282b3d8cd8549acb0898071b0097fe.tar.xz
gsoc2013-epiphany-46d371aa12282b3d8cd8549acb0898071b0097fe.tar.zst
gsoc2013-epiphany-46d371aa12282b3d8cd8549acb0898071b0097fe.zip
Fix return type of tab_delete slot.
2004-10-25 Christian Persch <chpe@cvs.gnome.org> * src/ephy-notebook.h: Fix return type of tab_delete slot.
Diffstat (limited to 'src')
-rw-r--r--src/ephy-notebook.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ephy-notebook.h b/src/ephy-notebook.h
index 60ede5616..00b2ec579 100644
--- a/src/ephy-notebook.h
+++ b/src/ephy-notebook.h
@@ -54,15 +54,15 @@ struct EphyNotebookClass
GtkNotebookClass parent_class;
/* Signals */
- void (* tab_added) (EphyNotebook *notebook,
- EphyTab *tab);
- void (* tab_removed) (EphyNotebook *notebook,
- EphyTab *tab);
- void (* tab_detached) (EphyNotebook *notebook,
- EphyTab *tab);
- void (* tabs_reordered) (EphyNotebook *notebook);
- void (* tab_delete) (EphyNotebook *notebook,
- EphyTab *tab);
+ void (* tab_added) (EphyNotebook *notebook,
+ EphyTab *tab);
+ void (* tab_removed) (EphyNotebook *notebook,
+ EphyTab *tab);
+ void (* tab_detached) (EphyNotebook *notebook,
+ EphyTab *tab);
+ void (* tabs_reordered) (EphyNotebook *notebook);
+ gboolean (* tab_delete) (EphyNotebook *notebook,
+ EphyTab *tab);
};
GType ephy_notebook_get_type (void);