summaryrefslogtreecommitdiff
path: root/libnm-glib/nm-object.c
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-05-06 13:37:25 -0400
committerDan Winship <danw@gnome.org>2013-05-08 14:59:29 -0400
commitd529580cbb62024c74d9b955e118d856c7b19b77 (patch)
tree9edb42ffec3b4cf83577a2fa19caef7b9e319f5f /libnm-glib/nm-object.c
parentec0a66861ecd3778a14e610c5fc3b42b499ffea6 (diff)
libnm-glib, core: use g_cclosure_marshal_generic
Since we depend on new glib now, we can just use the generic marshaller rather than generating our own.
Diffstat (limited to 'libnm-glib/nm-object.c')
-rw-r--r--libnm-glib/nm-object.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libnm-glib/nm-object.c b/libnm-glib/nm-object.c
index 70d6144b4..d143520c6 100644
--- a/libnm-glib/nm-object.c
+++ b/libnm-glib/nm-object.c
@@ -31,7 +31,6 @@
#include "nm-dbus-glib-types.h"
#include "nm-glib-compat.h"
#include "nm-types.h"
-#include "nm-glib-marshal.h"
#include "nm-dbus-helpers-private.h"
#define DEBUG 0
@@ -461,8 +460,7 @@ nm_object_class_init (NMObjectClass *nm_object_class)
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_FIRST,
G_STRUCT_OFFSET (NMObjectClass, object_creation_failed),
- NULL, NULL,
- _nm_glib_marshal_VOID__POINTER_POINTER,
+ NULL, NULL, NULL,
G_TYPE_NONE, 2, G_TYPE_POINTER, G_TYPE_POINTER);
}