summaryrefslogtreecommitdiff
path: root/ext/mikmod
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-10-07 21:12:48 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-10-12 16:04:21 +0100
commitd65eb2b91a0913b2f7629a1ea895dfeff27a9443 (patch)
tree665a5a5b6cfb8110973fd844d751d6627b7f34f4 /ext/mikmod
parentbcde8c1b297540c1297c70b06b3eea878b93a4e9 (diff)
downloadgstreamer-plugins-good-d65eb2b91a0913b2f7629a1ea895dfeff27a9443.tar.gz
ext, gst: canonicalise property names where this wasn't the case
ie. "foo_bar" -> "foo-bar"
Diffstat (limited to 'ext/mikmod')
-rw-r--r--ext/mikmod/gstmikmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mikmod/gstmikmod.c b/ext/mikmod/gstmikmod.c
index fa6bc78cf..a1810740e 100644
--- a/ext/mikmod/gstmikmod.c
+++ b/ext/mikmod/gstmikmod.c
@@ -183,10 +183,10 @@ gst_mikmod_class_init (GstMikModClass * klass)
g_param_spec_boolean ("hqmixer", "hqmixer", "hqmixer",
FALSE, G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SOFT_MUSIC,
- g_param_spec_boolean ("soft_music", "soft_music", "soft_music",
+ g_param_spec_boolean ("soft-music", "soft music", "soft music",
TRUE, G_PARAM_READWRITE));
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SOFT_SNDFX,
- g_param_spec_boolean ("soft_sndfx", "soft_sndfx", "soft_sndfx",
+ g_param_spec_boolean ("soft-sndfx", "soft sndfx", "soft sndfx",
TRUE, G_PARAM_READWRITE));