diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-06-10 05:57:24 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-06-14 18:55:32 +0800 |
commit | 8d08871ace1019111a50c47f473f565e4cb47307 (patch) | |
tree | a9628e45c2f891d2d2da2268ea487aedb241817e /embed/ephy-web-view.c | |
parent | 42fc55f3abdabe3e17e5abd8ff78e68fa1ae5626 (diff) | |
download | gsoc2013-epiphany-8d08871ace1019111a50c47f473f565e4cb47307.tar.gz gsoc2013-epiphany-8d08871ace1019111a50c47f473f565e4cb47307.tar.zst gsoc2013-epiphany-8d08871ace1019111a50c47f473f565e4cb47307.zip |
Use the generic marshaler throughout
Just enough to get rid of ephy-marshal.h
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r-- | embed/ephy-web-view.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 31947954b..015a3236a 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -39,7 +39,6 @@ #include "ephy-embed-utils.h" #include "ephy-file-helpers.h" #include "ephy-prefs.h" -#include "ephy-marshal.h" #include "ephy-permission-manager.h" #include "ephy-profile-utils.h" #include "ephy-favicon-cache.h" @@ -1329,7 +1328,7 @@ ephy_web_view_class_init (EphyWebViewClass *klass) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (EphyWebViewClass, popup_blocked), NULL, NULL, - ephy_marshal_VOID__STRING_STRING_STRING, + g_cclosure_marshal_generic, G_TYPE_NONE, 3, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, @@ -1351,7 +1350,7 @@ ephy_web_view_class_init (EphyWebViewClass *klass) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (EphyWebViewClass, search_link), NULL, NULL, - ephy_marshal_VOID__STRING_STRING_STRING, + g_cclosure_marshal_generic, G_TYPE_NONE, 3, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, @@ -1373,7 +1372,7 @@ ephy_web_view_class_init (EphyWebViewClass *klass) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (EphyWebViewClass, feed_link), NULL, NULL, - ephy_marshal_VOID__STRING_STRING_STRING, + g_cclosure_marshal_generic, G_TYPE_NONE, 3, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, @@ -1393,7 +1392,7 @@ ephy_web_view_class_init (EphyWebViewClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (EphyWebViewClass, modal_alert), g_signal_accumulator_true_handled, NULL, - ephy_marshal_BOOLEAN__VOID, + g_cclosure_marshal_generic, G_TYPE_BOOLEAN, 0); /** @@ -1425,7 +1424,7 @@ ephy_web_view_class_init (EphyWebViewClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (EphyWebViewClass, search_key_press), g_signal_accumulator_true_handled, NULL, - ephy_marshal_BOOLEAN__BOXED, + g_cclosure_marshal_generic, G_TYPE_BOOLEAN, 1, GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE); @@ -1443,7 +1442,7 @@ ephy_web_view_class_init (EphyWebViewClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (EphyWebViewClass, close_request), g_signal_accumulator_true_handled, NULL, - ephy_marshal_BOOLEAN__VOID, + g_cclosure_marshal_generic, G_TYPE_BOOLEAN, 0); /** |