mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
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:
parent
505f3889ca
commit
ce5a853516
2 changed files with 7 additions and 3 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue