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 | |
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.
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | embed/ephy-cookie-manager.c | 8 | ||||
-rw-r--r-- | embed/ephy-embed-single.c | 10 | ||||
-rw-r--r-- | embed/ephy-embed.c | 10 | ||||
-rw-r--r-- | embed/ephy-history.c | 4 | ||||
-rw-r--r-- | embed/ephy-permission-manager.c | 6 |
6 files changed, 30 insertions, 19 deletions
@@ -1,5 +1,16 @@ 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. + +2005-04-08 Christian Persch <chpe@cvs.gnome.org> + * embed/ephy-favicon-cache.c: (ephy_favicon_cache_finalize): * embed/ephy-history.c: (save_filter), (ephy_history_save): * lib/ephy-node-db.c: (ephy_node_db_write_to_xml_valist): 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 |