diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-04-09 01:02:52 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-04-09 01:02:52 +0800 |
commit | b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd (patch) | |
tree | e32db83ef1bf55fa19c36353e1951bf299dd34cc /embed/ephy-embed.c | |
parent | 30cfaa4a4929d85f303b3afc9c8ec240d548ff87 (diff) | |
download | gsoc2013-epiphany-b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd.tar gsoc2013-epiphany-b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd.tar.gz gsoc2013-epiphany-b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd.tar.bz2 gsoc2013-epiphany-b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd.tar.lz gsoc2013-epiphany-b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd.tar.xz gsoc2013-epiphany-b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd.tar.zst gsoc2013-epiphany-b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd.zip |
Add G_SIGNAL_TYPE_STATIC_SCOPE to many signals.
2005-04-08 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-cookie-manager.c: (ephy_cookie_manager_base_init):
* embed/ephy-embed-single.c: (ephy_embed_single_iface_init):
* embed/ephy-embed.c: (ephy_embed_base_init):
* embed/ephy-history.c: (ephy_history_class_init):
* embed/ephy-permission-manager.c:
(ephy_permission_manager_base_init):
Add G_SIGNAL_TYPE_STATIC_SCOPE to many signals.
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index c77dfb657..1fbed68e2 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -92,8 +92,8 @@ ephy_embed_base_init (gpointer g_class) ephy_marshal_VOID__STRING_STRING, G_TYPE_NONE, 2, - G_TYPE_STRING, - G_TYPE_STRING); + G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, + G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE); /** * EphyEmbed::ge-context-menu: * @embed: @@ -170,7 +170,7 @@ ephy_embed_base_init (gpointer g_class) g_cclosure_marshal_VOID__STRING, G_TYPE_NONE, 1, - G_TYPE_STRING); + G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE); /** * EphyEmbed::ge-net-state: * @embed: @@ -189,7 +189,7 @@ ephy_embed_base_init (gpointer g_class) ephy_marshal_VOID__STRING_FLAGS, G_TYPE_NONE, 2, - G_TYPE_STRING, + G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, EPHY_TYPE_EMBED_NET_STATE); /** * EphyEmbed::ge-dom-mouse-click: @@ -281,7 +281,7 @@ ephy_embed_base_init (gpointer g_class) g_cclosure_marshal_VOID__STRING, G_TYPE_NONE, 1, - G_TYPE_STRING); + G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE); /** * EphyEmbed::ge-modal-alert: |