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-history.c | |
parent | 30cfaa4a4929d85f303b3afc9c8ec240d548ff87 (diff) | |
download | gsoc2013-epiphany-b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd.tar.gz 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-history.c')
-rw-r--r-- | embed/ephy-history.c | 4 |
1 files changed, 2 insertions, 2 deletions
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)); } |