gst/gstparamspecs.c: Don't use GLib-2.10 functions, we still depend on

Original commit message from CVS:
* gst/gstparamspecs.c: (gst_param_spec_fraction_get_type):
Don't use GLib-2.10 functions, we still depend on
GLib-how-old-is-it-again-2.8.
This commit is contained in:
Tim-Philipp Müller 2007-06-06 11:38:25 +00:00
parent 505f3889ca
commit ce5a853516
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2007-06-06 Tim-Philipp Müller <tim at centricular dot net>
* gst/gstparamspecs.c: (gst_param_spec_fraction_get_type):
Don't use GLib-2.10 functions, we still depend on
GLib-how-old-is-it-again-2.8.
2007-06-06 Tim-Philipp Müller <tim at centricular dot net>
* docs/gst/gstreamer-sections.txt:

View file

@ -124,9 +124,7 @@ gst_param_spec_fraction_get_type (void)
_gst_param_fraction_values_cmp, /* values_cmp */
};
pspec_info.value_type = GST_TYPE_FRACTION;
type =
g_param_type_register_static (g_intern_static_string
("GstParamFraction"), &pspec_info);
type = g_param_type_register_static ("GstParamFraction", &pspec_info);
}
return type;
}