Commit 5bca3c85 authored by Dafydd Harries's avatar Dafydd Harries

stun-server should be string, not pointer property

darcs-hash:20070315121434-c9803-8820d6cd83e859650511ce75386b387bb46c1b0d.gz
parent 5ca6a461
...@@ -263,10 +263,11 @@ nice_agent_class_init (NiceAgentClass *klass) ...@@ -263,10 +263,11 @@ nice_agent_class_init (NiceAgentClass *klass)
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
g_object_class_install_property (gobject_class, PROP_STUN_SERVER, g_object_class_install_property (gobject_class, PROP_STUN_SERVER,
g_param_spec_pointer ( g_param_spec_string (
"stun-server", "stun-server",
"STUN server", "STUN server",
"The STUN server used to obtain server-reflexive candidates", "The STUN server used to obtain server-reflexive candidates",
NULL,
G_PARAM_READWRITE)); G_PARAM_READWRITE));
/* install signals */ /* install signals */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment