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 | 03aca81c2c886c31fe1d57b70b0a4d0fd61bfc5b (patch) | |
tree | ebd07cae6bfde43680498bd17786a5fc70ec0694 /gst/cutter | |
parent | 5c926cd8415efdc4259277afee912776d28f66f5 (diff) |
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/cutter')
-rw-r--r-- | gst/cutter/gstcutter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/cutter/gstcutter.c b/gst/cutter/gstcutter.c index eb2a67539..f163c0b6d 100644 --- a/gst/cutter/gstcutter.c +++ b/gst/cutter/gstcutter.c @@ -170,12 +170,12 @@ gst_cutter_class_init (GstCutterClass *klass) "do we leak buffers when below threshold ?", FALSE, G_PARAM_READWRITE)); gst_cutter_signals[CUT_START] = - g_signal_new ("cut_start", G_TYPE_FROM_CLASS (klass), + g_signal_new ("cut-start", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstCutterClass, cut_start), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); gst_cutter_signals[CUT_STOP] = - g_signal_new ("cut_stop", G_TYPE_FROM_CLASS (klass), + g_signal_new ("cut-stop", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GstCutterClass, cut_stop), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); |