aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-10-25 21:41:27 +0800
committerChristian Persch <chpe@src.gnome.org>2004-10-25 21:41:27 +0800
commite45003e6a350940ee2c2acfe2b33de7ba26533fa (patch)
tree42b526a9be58e73f5525392e3450b22f83ceaf74 /src
parent128ce2dbb1c459052d70235f14f31125df18ca15 (diff)
downloadgsoc2013-epiphany-e45003e6a350940ee2c2acfe2b33de7ba26533fa.tar
gsoc2013-epiphany-e45003e6a350940ee2c2acfe2b33de7ba26533fa.tar.gz
gsoc2013-epiphany-e45003e6a350940ee2c2acfe2b33de7ba26533fa.tar.bz2
gsoc2013-epiphany-e45003e6a350940ee2c2acfe2b33de7ba26533fa.tar.lz
gsoc2013-epiphany-e45003e6a350940ee2c2acfe2b33de7ba26533fa.tar.xz
gsoc2013-epiphany-e45003e6a350940ee2c2acfe2b33de7ba26533fa.tar.zst
gsoc2013-epiphany-e45003e6a350940ee2c2acfe2b33de7ba26533fa.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);