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 /embed | |
parent | 2c0ac2bcd53488a14ad40269d7645e0ee2081773 (diff) | |
download | gsoc2013-epiphany-42be540e47b88923fc6f1155be3eac3e20ec2d32.tar.gz 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.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed.c | 4 |
1 files changed, 2 insertions, 2 deletions
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: |