er, no, signal should be VOID__POINTER. :)

Original commit message from CVS:
er, no, signal should be VOID__POINTER.  :)
This commit is contained in:
David Schleef 2003-11-13 21:25:38 +00:00
parent b80a8f7bae
commit ac91fc230c
2 changed files with 4 additions and 4 deletions

View file

@ -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__VOID,
G_TYPE_NONE, 0);
NULL, NULL, g_cclosure_marshal_VOID__POINTER,
G_TYPE_NONE, 1, G_TYPE_POINTER);
initialized = TRUE;
}

View file

@ -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__VOID,
G_TYPE_NONE, 0);
NULL, NULL, g_cclosure_marshal_VOID__POINTER,
G_TYPE_NONE, 1, G_TYPE_POINTER);
initialized = TRUE;
}