summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-10-08 00:38:39 +0100
committerTim-Philipp Müller <tim@centricular.net>2012-09-11 01:54:40 +0100
commitdbbbe595778d74b890649ac33a9ff3e08dbf0310 (patch)
treea10d3ba6feb96b973353bfd741c75a8687d12cc7
parenta7078b74fb1f4ab64b783aa791d7709a0917c7c8 (diff)
gdp: dataprotocol, lfocontrolsource: fix enum value name in enums that are public API
So run-time bindings can introspect the names correctly (we abuse this field as description field only in elements, not for public API (where the description belongs into the gtk-doc chunk). https://bugzilla.gnome.org/show_bug.cgi?id=629946
-rw-r--r--gst/gdp/dataprotocol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gdp/dataprotocol.c b/gst/gdp/dataprotocol.c
index ac0a9ce25..5e413b05a 100644
--- a/gst/gdp/dataprotocol.c
+++ b/gst/gdp/dataprotocol.c
@@ -294,8 +294,8 @@ gst_dp_version_get_type (void)
{
static GType gst_dp_version_type = 0;
static const GEnumValue gst_dp_version[] = {
- {GST_DP_VERSION_0_2, "GDP Version 0.2", "0.2"},
- {GST_DP_VERSION_1_0, "GDP Version 1.0", "1.0"},
+ {GST_DP_VERSION_0_2, "GST_DP_VERSION_0_2", "0.2"},
+ {GST_DP_VERSION_1_0, "GST_DP_VERSION_1_0", "1.0"},
{0, NULL, NULL},
};