summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2009-03-13 18:32:47 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2009-03-13 18:32:47 +0100
commit0c4f3d4afb43a0c23fcabbd57301b9021ce1d960 (patch)
treeb16ec19d0d697567663ec19c55275ebaa4a43ff6
parent469aced5810b094f05d628d1d447b6430ae0d483 (diff)
udpsrc: convert _ in properties to -
--
-rw-r--r--gst/udp/gstudpsrc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c
index 087e3384d..df2b8932b 100644
--- a/gst/udp/gstudpsrc.c
+++ b/gst/udp/gstudpsrc.c
@@ -252,11 +252,11 @@ gst_udpsrc_class_init (GstUDPSrcClass * klass)
"The port to receive the packets from, 0=allocate", 0, G_MAXUINT16,
UDP_DEFAULT_PORT, G_PARAM_READWRITE));
g_object_class_install_property (gobject_class, PROP_MULTICAST_GROUP,
- g_param_spec_string ("multicast_group", "Multicast Group",
+ g_param_spec_string ("multicast-group", "Multicast Group",
"The Address of multicast group to join", UDP_DEFAULT_MULTICAST_GROUP,
G_PARAM_READWRITE));
g_object_class_install_property (gobject_class, PROP_MULTICAST_IFACE,
- g_param_spec_string ("multicast_iface", "Multicast Interface",
+ g_param_spec_string ("multicast-iface", "Multicast Interface",
"The network interface on which to join the multicast group",
UDP_DEFAULT_MULTICAST_IFACE, G_PARAM_READWRITE));
g_object_class_install_property (gobject_class, PROP_URI,