summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-11-13 01:48:53 +0000
committerDavid Schleef <ds@schleef.org>2003-11-13 01:48:53 +0000
commit3335546e2ca9456a2e1c617d75dfb7589fbadfd4 (patch)
treec3336757845af4fe8ca701dc4a1c08ffe91c907a
parentddb4e3ef8554536491cb39642459fd38c9c7d776 (diff)
signal should be VOID__VOID
Original commit message from CVS: signal should be VOID__VOID
-rw-r--r--gst-libs/gst/interfaces/propertyprobe.c4
-rw-r--r--gst-libs/gst/propertyprobe/propertyprobe.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/gst-libs/gst/interfaces/propertyprobe.c b/gst-libs/gst/interfaces/propertyprobe.c
index a8de4a9ab..c99eb313c 100644
--- a/gst-libs/gst/interfaces/propertyprobe.c
+++ b/gst-libs/gst/interfaces/propertyprobe.c
@@ -72,8 +72,8 @@ gst_property_probe_iface_init (GstPropertyProbeInterface *iface)
gst_property_probe_signals[SIGNAL_PROBE_NEEDED] =
g_signal_new ("probe_needed", G_TYPE_FROM_CLASS (iface), G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GstPropertyProbeInterface, probe_needed),
- NULL, NULL, g_cclosure_marshal_VOID__POINTER,
- G_TYPE_NONE, 1, G_TYPE_POINTER);
+ NULL, NULL, g_cclosure_marshal_VOID__VOID,
+ G_TYPE_NONE, 0);
initialized = TRUE;
}
diff --git a/gst-libs/gst/propertyprobe/propertyprobe.c b/gst-libs/gst/propertyprobe/propertyprobe.c
index a8de4a9ab..c99eb313c 100644
--- a/gst-libs/gst/propertyprobe/propertyprobe.c
+++ b/gst-libs/gst/propertyprobe/propertyprobe.c
@@ -72,8 +72,8 @@ gst_property_probe_iface_init (GstPropertyProbeInterface *iface)
gst_property_probe_signals[SIGNAL_PROBE_NEEDED] =
g_signal_new ("probe_needed", G_TYPE_FROM_CLASS (iface), G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (GstPropertyProbeInterface, probe_needed),
- NULL, NULL, g_cclosure_marshal_VOID__POINTER,
- G_TYPE_NONE, 1, G_TYPE_POINTER);
+ NULL, NULL, g_cclosure_marshal_VOID__VOID,
+ G_TYPE_NONE, 0);
initialized = TRUE;
}