aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am23
-rw-r--r--lib/widgets/ephy-location-entry.c5
-rw-r--r--lib/widgets/ephy-node-view.c5
-rw-r--r--lib/widgets/ephy-tree-model-sort.c1
4 files changed, 6 insertions, 28 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 63d58db1e..a75896bb0 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -125,9 +125,7 @@ ephy_profile_migrator_CPPFLAGS = \
BUILT_SOURCES = \
ephy-lib-type-builtins.c \
- ephy-lib-type-builtins.h \
- ephy-marshal.c \
- ephy-marshal.h
+ ephy-lib-type-builtins.h
CLEANFILES = $(stamp_files) $(BUILT_SOURCES)
DISTCLEANFILES = $(stamp_files) $(BUILT_SOURCES)
@@ -135,21 +133,7 @@ MAINTAINERCLEANFILES = $(stamp_files) $(BUILT_SOURCES)
stamp_files = \
stamp-ephy-lib-type-builtins.c \
- stamp-ephy-lib-type-builtins.h \
- stamp-ephy-marshal.c \
- stamp-ephy-marshal.h
-
-ephy-marshal.c: stamp-ephy-marshal.c
- @true
-stamp-ephy-marshal.c: ephy-marshal.list
- $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=ephy_marshal $(srcdir)/ephy-marshal.list --header --body > ephy-marshal.c \
- && echo timestamp > $(@F)
-
-ephy-marshal.h: stamp-ephy-marshal.h
- @true
-stamp-ephy-marshal.h: ephy-marshal.list
- $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=ephy_marshal $(srcdir)/ephy-marshal.list --header > ephy-marshal.h \
- && echo timestamp > $(@F)
+ stamp-ephy-lib-type-builtins.h
ephy-lib-type-builtins.c: stamp-ephy-lib-type-builtins.c Makefile
@true
@@ -192,6 +176,3 @@ stamp-ephy-lib-type-builtins.h: Makefile $(TYPES_H_FILES)
&& ( cmp -s xgen-$(@F) $(@F:stamp-%=%) || cp xgen-$(@F) $(@F:stamp-%=%) ) \
&& rm -f xgen-$(@F) \
&& echo timestamp > $(@F)
-
-EXTRA_DIST = \
- ephy-marshal.list
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c
index cb8d9b363..e67b3e904 100644
--- a/lib/widgets/ephy-location-entry.c
+++ b/lib/widgets/ephy-location-entry.c
@@ -25,7 +25,6 @@
#include "ephy-tree-model-node.h"
#include "ephy-location-entry.h"
-#include "ephy-marshal.h"
#include "ephy-signal-accumulator.h"
#include "ephy-dnd.h"
#include "egg-editable-toolbar.h"
@@ -212,7 +211,7 @@ ephy_location_entry_class_init (EphyLocationEntryClass *klass)
G_SIGNAL_RUN_FIRST | G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (EphyLocationEntryClass, get_location),
ephy_signal_accumulator_string, NULL,
- ephy_marshal_STRING__VOID,
+ g_cclosure_marshal_generic,
G_TYPE_STRING,
0,
G_TYPE_NONE);
@@ -232,7 +231,7 @@ ephy_location_entry_class_init (EphyLocationEntryClass *klass)
G_SIGNAL_RUN_FIRST | G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (EphyLocationEntryClass, get_title),
ephy_signal_accumulator_string, NULL,
- ephy_marshal_STRING__VOID,
+ g_cclosure_marshal_generic,
G_TYPE_STRING,
0,
G_TYPE_NONE);
diff --git a/lib/widgets/ephy-node-view.c b/lib/widgets/ephy-node-view.c
index eabdaa422..e30a5364d 100644
--- a/lib/widgets/ephy-node-view.c
+++ b/lib/widgets/ephy-node-view.c
@@ -28,7 +28,6 @@
#include "eggtreemultidnd.h"
#include "ephy-dnd.h"
#include "ephy-gui.h"
-#include "ephy-marshal.h"
#include <string.h>
/**
@@ -1858,7 +1857,7 @@ ephy_node_view_class_init (EphyNodeViewClass *klass)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (EphyNodeViewClass, node_toggled),
NULL, NULL,
- ephy_marshal_VOID__POINTER_BOOLEAN,
+ g_cclosure_marshal_generic,
G_TYPE_NONE,
2,
G_TYPE_POINTER,
@@ -1911,7 +1910,7 @@ ephy_node_view_class_init (EphyNodeViewClass *klass)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (EphyNodeViewClass, node_dropped),
NULL, NULL,
- ephy_marshal_VOID__POINTER_POINTER,
+ g_cclosure_marshal_generic,
G_TYPE_NONE,
2,
G_TYPE_POINTER,
diff --git a/lib/widgets/ephy-tree-model-sort.c b/lib/widgets/ephy-tree-model-sort.c
index 263d7dc30..aeeb7652b 100644
--- a/lib/widgets/ephy-tree-model-sort.c
+++ b/lib/widgets/ephy-tree-model-sort.c
@@ -26,7 +26,6 @@
#include "ephy-tree-model-sort.h"
#include "eggtreemultidnd.h"
#include "ephy-dnd.h"
-#include "ephy-marshal.h"
#include "ephy-debug.h"
/**