diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-04 21:39:15 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-04 21:39:15 +0000 |
commit | ef255131dc7988d4ef77f76bbdf94cf44b428057 (patch) | |
tree | 8be770426404d31dec6d59f2d79fb4886503c54a /gst-libs/gst/propertyprobe | |
parent | 924ae90cef6508823f9edf14cb54d57e9aa9932a (diff) | |
download | gst-plugins-bad-ef255131dc7988d4ef77f76bbdf94cf44b428057.tar.gz gst-plugins-bad-ef255131dc7988d4ef77f76bbdf94cf44b428057.tar.bz2 gst-plugins-bad-ef255131dc7988d4ef77f76bbdf94cf44b428057.zip |
fix headers fix signals to use - instead of _
Original commit message from CVS:
fix headers
fix signals to use - instead of _
Diffstat (limited to 'gst-libs/gst/propertyprobe')
-rw-r--r-- | gst-libs/gst/propertyprobe/propertyprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/propertyprobe/propertyprobe.c b/gst-libs/gst/propertyprobe/propertyprobe.c index ea242430..85a98932 100644 --- a/gst-libs/gst/propertyprobe/propertyprobe.c +++ b/gst-libs/gst/propertyprobe/propertyprobe.c @@ -70,7 +70,7 @@ gst_property_probe_iface_init (GstPropertyProbeInterface *iface) if (!initialized) { gst_property_probe_signals[SIGNAL_PROBE_NEEDED] = - g_signal_new ("probe_needed", G_TYPE_FROM_CLASS (iface), G_SIGNAL_RUN_LAST, + 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); |