mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
filesource: Make the uri property CONSTRUCT_ONLY
This is the way it should always have been.
This commit is contained in:
parent
7e82bef3a9
commit
30e12995fd
1 changed files with 2 additions and 2 deletions
|
@ -133,8 +133,8 @@ ges_timeline_filesource_class_init (GESTimelineFileSourceClass * klass)
|
||||||
* The location of the file/resource to use.
|
* The location of the file/resource to use.
|
||||||
*/
|
*/
|
||||||
g_object_class_install_property (object_class, PROP_URI,
|
g_object_class_install_property (object_class, PROP_URI,
|
||||||
g_param_spec_string ("uri", "URI", "uri of the resource",
|
g_param_spec_string ("uri", "URI", "uri of the resource", NULL,
|
||||||
NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GESTimelineFileSource:mute:
|
* GESTimelineFileSource:mute:
|
||||||
|
|
Loading…
Reference in a new issue