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-history.c | |
parent | 42fc55f3abdabe3e17e5abd8ff78e68fa1ae5626 (diff) | |
download | gsoc2013-epiphany-8d08871ace1019111a50c47f473f565e4cb47307.tar gsoc2013-epiphany-8d08871ace1019111a50c47f473f565e4cb47307.tar.gz gsoc2013-epiphany-8d08871ace1019111a50c47f473f565e4cb47307.tar.bz2 gsoc2013-epiphany-8d08871ace1019111a50c47f473f565e4cb47307.tar.lz gsoc2013-epiphany-8d08871ace1019111a50c47f473f565e4cb47307.tar.xz 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-history.c')
-rw-r--r-- | embed/ephy-history.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/embed/ephy-history.c b/embed/ephy-history.c index b6fe5dc4b..0964dca95 100644 --- a/embed/ephy-history.c +++ b/embed/ephy-history.c @@ -21,7 +21,6 @@ #include "config.h" #include "ephy-history.h" -#include "ephy-marshal.h" #include "ephy-file-helpers.h" #include "ephy-debug.h" #include "ephy-node-db.h" @@ -152,7 +151,7 @@ ephy_history_class_init (EphyHistoryClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (EphyHistoryClass, add_page), g_signal_accumulator_true_handled, NULL, - ephy_marshal_BOOLEAN__STRING_BOOLEAN_BOOLEAN, + g_cclosure_marshal_generic, G_TYPE_BOOLEAN, 3, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, @@ -186,7 +185,7 @@ ephy_history_class_init (EphyHistoryClass *klass) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (EphyHistoryClass, redirect), NULL, NULL, - ephy_marshal_VOID__STRING_STRING, + g_cclosure_marshal_generic, G_TYPE_NONE, 2, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, @@ -198,7 +197,7 @@ ephy_history_class_init (EphyHistoryClass *klass) G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (EphyHistoryClass, icon_updated), NULL, NULL, - ephy_marshal_VOID__STRING_STRING, + g_cclosure_marshal_generic, G_TYPE_NONE, 2, G_TYPE_STRING, G_TYPE_STRING); |