From b162955174c79d8b9a9be4ed6047ee0a6d39c9aa Mon Sep 17 00:00:00 2001 From: Daniel Ehlers Date: Mon, 6 Dec 2010 02:07:06 +0100 Subject: [PATCH] Remove include only file --- Makefile | 2 +- egg-marshal.c | 2 -- eggmarshalers.h | 17 +++-------------- 3 files changed, 4 insertions(+), 17 deletions(-) delete mode 100644 egg-marshal.c diff --git a/Makefile b/Makefile index 6debb5e..dbc8282 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/Makefile.common # Part 1 # recursive make -SRC = panel.c misc.c bg.c egg-marshal.c eggtraymanager.c fixedtip.c main.c gdk-helper.c +SRC = panel.c misc.c bg.c eggtraymanager.c eggmarshalers.c fixedtip.c main.c gdk-helper.c OBJ = $(SRC:%.c=%.o) DEP = $(SRC:%.c=%.dep) diff --git a/egg-marshal.c b/egg-marshal.c deleted file mode 100644 index 2fb5bb4..0000000 --- a/egg-marshal.c +++ /dev/null @@ -1,2 +0,0 @@ -#include "eggmarshalers.h" -#include "eggmarshalers.c" diff --git a/eggmarshalers.h b/eggmarshalers.h index 4ac58bf..bdadd46 100644 --- a/eggmarshalers.h +++ b/eggmarshalers.h @@ -1,13 +1,7 @@ - -#ifndef ___egg_marshal_MARSHAL_H__ -#define ___egg_marshal_MARSHAL_H__ - #include -G_BEGIN_DECLS - /* VOID:OBJECT,OBJECT (eggmarshalers.list:1) */ -extern void _egg_marshal_VOID__OBJECT_OBJECT (GClosure *closure, +void _egg_marshal_VOID__OBJECT_OBJECT (GClosure *closure, GValue *return_value, guint n_param_values, const GValue *param_values, @@ -15,7 +9,7 @@ extern void _egg_marshal_VOID__OBJECT_OBJECT (GClosure *closure, gpointer marshal_data); /* VOID:OBJECT,STRING,LONG,LONG (eggmarshalers.list:2) */ -extern void _egg_marshal_VOID__OBJECT_STRING_LONG_LONG (GClosure *closure, +void _egg_marshal_VOID__OBJECT_STRING_LONG_LONG (GClosure *closure, GValue *return_value, guint n_param_values, const GValue *param_values, @@ -23,14 +17,9 @@ extern void _egg_marshal_VOID__OBJECT_STRING_LONG_LONG (GClosure *closure, gpointer marshal_data); /* VOID:OBJECT,LONG (eggmarshalers.list:3) */ -extern void _egg_marshal_VOID__OBJECT_LONG (GClosure *closure, +void _egg_marshal_VOID__OBJECT_LONG (GClosure *closure, GValue *return_value, guint n_param_values, const GValue *param_values, gpointer invocation_hint, gpointer marshal_data); - -G_END_DECLS - -#endif /* ___egg_marshal_MARSHAL_H__ */ -