diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-03-26 04:49:47 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-03-26 04:49:47 +0800 |
commit | 42be540e47b88923fc6f1155be3eac3e20ec2d32 (patch) | |
tree | b9bc062ea53621270a52cf458a3f74eed164c3ec | |
parent | 2c0ac2bcd53488a14ad40269d7645e0ee2081773 (diff) | |
download | gsoc2013-epiphany-42be540e47b88923fc6f1155be3eac3e20ec2d32.tar gsoc2013-epiphany-42be540e47b88923fc6f1155be3eac3e20ec2d32.tar.gz gsoc2013-epiphany-42be540e47b88923fc6f1155be3eac3e20ec2d32.tar.bz2 gsoc2013-epiphany-42be540e47b88923fc6f1155be3eac3e20ec2d32.tar.lz gsoc2013-epiphany-42be540e47b88923fc6f1155be3eac3e20ec2d32.tar.xz gsoc2013-epiphany-42be540e47b88923fc6f1155be3eac3e20ec2d32.tar.zst gsoc2013-epiphany-42be540e47b88923fc6f1155be3eac3e20ec2d32.zip |
Fix arg type of dom_* signals to match the closure.
2004-03-25 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed.c: (ephy_embed_base_init):
Fix arg type of dom_* signals to match the closure.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | embed/ephy-embed.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2004-03-25 Christian Persch <chpe@cvs.gnome.org> + * embed/ephy-embed.c: (ephy_embed_base_init): + + Fix arg type of dom_* signals to match the closure. +2004-03-25 Christian Persch <chpe@cvs.gnome.org> + * doc/reference/epiphany.types: Add ephy_tab_get_type(), fixes EphyTab documentation to include diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index e150021eb..6156051f4 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -192,7 +192,7 @@ ephy_embed_base_init (gpointer g_class) ephy_marshal_BOOLEAN__OBJECT, G_TYPE_BOOLEAN, 1, - G_TYPE_POINTER); + G_TYPE_OBJECT); /** * EphyEmbed::ge-dom-mouse-down: * @embed: @@ -209,7 +209,7 @@ ephy_embed_base_init (gpointer g_class) ephy_marshal_BOOLEAN__OBJECT, G_TYPE_BOOLEAN, 1, - G_TYPE_POINTER); + G_TYPE_OBJECT); /** * EphyEmbed::ge-security-change: * @embed: |