summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-03-04 21:39:15 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-03-04 21:39:15 +0000
commit03aca81c2c886c31fe1d57b70b0a4d0fd61bfc5b (patch)
treeebd07cae6bfde43680498bd17786a5fc70ec0694 /gst
parent5c926cd8415efdc4259277afee912776d28f66f5 (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')
-rw-r--r--gst/cutter/gstcutter.c4
-rw-r--r--gst/effectv/gstvertigo.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/gst/cutter/gstcutter.c b/gst/cutter/gstcutter.c
index eb2a6753..f163c0b6 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);
diff --git a/gst/effectv/gstvertigo.c b/gst/effectv/gstvertigo.c
index 5dc97048..9bcbf393 100644
--- a/gst/effectv/gstvertigo.c
+++ b/gst/effectv/gstvertigo.c
@@ -155,7 +155,7 @@ gst_vertigotv_class_init (GstVertigoTVClass * klass)
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
gst_vertigotv_signals[RESET_SIGNAL] =
- g_signal_new ("reset_parms",
+ g_signal_new ("reset-parms",
G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
G_STRUCT_OFFSET (GstVertigoTVClass, reset),