projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35ea12e
)
controlbindings: name is not a const
author
Edward Hervey
<edward.hervey@collabora.co.uk>
Wed, 25 Jan 2012 10:49:50 +0000
(11:49 +0100)
committer
Edward Hervey
<edward.hervey@collabora.co.uk>
Wed, 25 Jan 2012 10:50:49 +0000
(11:50 +0100)
It gets modified during the life of the object. Fixes build.
gst/gstcontrolbinding.h
patch
|
blob
|
history
diff --git
a/gst/gstcontrolbinding.h
b/gst/gstcontrolbinding.h
index
78b3661
..
96652fa
100644
(file)
--- a/
gst/gstcontrolbinding.h
+++ b/
gst/gstcontrolbinding.h
@@
-67,7
+67,7
@@
struct _GstControlBinding {
GstObject parent;
/*< public >*/
-
const gchar *name;
/* name of the property */
+
gchar *name;
/* name of the property */
GParamSpec *pspec; /* GParamSpec for this property */
/*< private >*/