aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-04-09 01:02:52 +0800
committerChristian Persch <chpe@src.gnome.org>2005-04-09 01:02:52 +0800
commitb2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd (patch)
treee32db83ef1bf55fa19c36353e1951bf299dd34cc /embed
parent30cfaa4a4929d85f303b3afc9c8ec240d548ff87 (diff)
downloadgsoc2013-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')
-rw-r--r--embed/ephy-cookie-manager.c8
-rw-r--r--embed/ephy-embed-single.c10
-rw-r--r--embed/ephy-embed.c10
-rw-r--r--embed/ephy-history.c4
-rw-r--r--embed/ephy-permission-manager.c6
5 files changed, 19 insertions, 19 deletions
diff --git a/embed/ephy-cookie-manager.c b/embed/ephy-cookie-manager.c
index 6d94b1a8f..807b6091f 100644
--- a/embed/ephy-cookie-manager.c
+++ b/embed/ephy-cookie-manager.c
@@ -141,7 +141,7 @@ ephy_cookie_manager_base_init (gpointer base_iface)
g_cclosure_marshal_VOID__BOXED,
G_TYPE_NONE,
1,
- EPHY_TYPE_COOKIE);
+ EPHY_TYPE_COOKIE | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
* EphyCookieManager::cookie-changed
@@ -158,7 +158,7 @@ ephy_cookie_manager_base_init (gpointer base_iface)
g_cclosure_marshal_VOID__BOXED,
G_TYPE_NONE,
1,
- EPHY_TYPE_COOKIE);
+ EPHY_TYPE_COOKIE | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
* EphyCookieManager::cookie-deleted
@@ -175,7 +175,7 @@ ephy_cookie_manager_base_init (gpointer base_iface)
g_cclosure_marshal_VOID__BOXED,
G_TYPE_NONE,
1,
- EPHY_TYPE_COOKIE);
+ EPHY_TYPE_COOKIE | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
* EphyCookieManager::cookie-rejected
@@ -192,7 +192,7 @@ ephy_cookie_manager_base_init (gpointer base_iface)
g_cclosure_marshal_VOID__STRING,
G_TYPE_NONE,
1,
- G_TYPE_STRING);
+ G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
* EphyCookieManager::cookies-cleared
diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c
index c2138a189..e80a6bfdb 100644
--- a/embed/ephy-embed-single.c
+++ b/embed/ephy-embed-single.c
@@ -137,8 +137,8 @@ ephy_embed_single_iface_init (gpointer g_class)
ephy_marshal_BOOLEAN__STRING_STRING,
G_TYPE_BOOLEAN,
2,
- G_TYPE_STRING,
- G_TYPE_STRING);
+ G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE,
+ G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
* EphyEmbedSingle::add-search-engine
@@ -158,9 +158,9 @@ ephy_embed_single_iface_init (gpointer g_class)
ephy_marshal_BOOLEAN__STRING_STRING_STRING,
G_TYPE_BOOLEAN,
3,
- G_TYPE_STRING,
- G_TYPE_STRING,
- G_TYPE_STRING);
+ G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE,
+ G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE,
+ G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
* EphyEmbedSingle::check_content:
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:
diff --git a/embed/ephy-history.c b/embed/ephy-history.c
index e6c8f08c9..27faad9e9 100644
--- a/embed/ephy-history.c
+++ b/embed/ephy-history.c
@@ -208,8 +208,8 @@ ephy_history_class_init (EphyHistoryClass *klass)
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);
g_type_class_add_private (object_class, sizeof (EphyHistoryPrivate));
}
diff --git a/embed/ephy-permission-manager.c b/embed/ephy-permission-manager.c
index a86506b6d..b83cd3ff4 100644
--- a/embed/ephy-permission-manager.c
+++ b/embed/ephy-permission-manager.c
@@ -147,7 +147,7 @@ ephy_permission_manager_base_init (gpointer g_class)
g_cclosure_marshal_VOID__BOXED,
G_TYPE_NONE,
1,
- EPHY_TYPE_PERMISSION_INFO);
+ EPHY_TYPE_PERMISSION_INFO | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
* EphyPermissionManager::permission-changed
@@ -165,7 +165,7 @@ ephy_permission_manager_base_init (gpointer g_class)
g_cclosure_marshal_VOID__BOXED,
G_TYPE_NONE,
1,
- EPHY_TYPE_PERMISSION_INFO);
+ EPHY_TYPE_PERMISSION_INFO | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
* EphyPermissionManager::permission-deleted
@@ -183,7 +183,7 @@ ephy_permission_manager_base_init (gpointer g_class)
g_cclosure_marshal_VOID__BOXED,
G_TYPE_NONE,
1,
- EPHY_TYPE_PERMISSION_INFO);
+ EPHY_TYPE_PERMISSION_INFO | G_SIGNAL_TYPE_STATIC_SCOPE);
/**
* EphyPermissionManager::permissions-cleared