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/colorbalance | |
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/colorbalance')
-rw-r--r-- | gst-libs/gst/colorbalance/colorbalance.c | 2 | ||||
-rw-r--r-- | gst-libs/gst/colorbalance/colorbalancechannel.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/colorbalance/colorbalance.c b/gst-libs/gst/colorbalance/colorbalance.c index 7e8cec9b..dd32ff8b 100644 --- a/gst-libs/gst/colorbalance/colorbalance.c +++ b/gst-libs/gst/colorbalance/colorbalance.c @@ -71,7 +71,7 @@ gst_color_balance_class_init (GstColorBalanceClass *klass) if (!initialized) { gst_color_balance_signals[VALUE_CHANGED] = - g_signal_new ("value_changed", + g_signal_new ("value-changed", GST_TYPE_COLOR_BALANCE, G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstColorBalanceClass, value_changed), NULL, NULL, diff --git a/gst-libs/gst/colorbalance/colorbalancechannel.c b/gst-libs/gst/colorbalance/colorbalancechannel.c index e8c6e87b..b8a4eebd 100644 --- a/gst-libs/gst/colorbalance/colorbalancechannel.c +++ b/gst-libs/gst/colorbalance/colorbalancechannel.c @@ -74,7 +74,7 @@ gst_color_balance_channel_class_init (GstColorBalanceChannelClass *klass) parent_class = g_type_class_ref (G_TYPE_OBJECT); signals[SIGNAL_VALUE_CHANGED] = - g_signal_new ("value_changed", G_TYPE_FROM_CLASS (klass), + g_signal_new ("value-changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstColorBalanceChannelClass, value_changed), |