diff options
author | David Schleef <ds@schleef.org> | 2003-11-13 01:48:53 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-11-13 01:48:53 +0000 |
commit | 14081d99c795e10591abd5dd774670ac16c493bd (patch) | |
tree | 940315f572f0550ccef89ecc3a9bb8bba385d49c /gst-libs | |
parent | d8d8ee231d9afd541358e7b0d37f9f064a07f802 (diff) | |
download | gst-plugins-bad-14081d99c795e10591abd5dd774670ac16c493bd.tar.gz gst-plugins-bad-14081d99c795e10591abd5dd774670ac16c493bd.tar.bz2 gst-plugins-bad-14081d99c795e10591abd5dd774670ac16c493bd.zip |
signal should be VOID__VOID
Original commit message from CVS:
signal should be VOID__VOID
Diffstat (limited to 'gst-libs')
-rw-r--r-- | gst-libs/gst/propertyprobe/propertyprobe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/propertyprobe/propertyprobe.c b/gst-libs/gst/propertyprobe/propertyprobe.c index a8de4a9a..c99eb313 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; } |