comparison libpurple/media/backend-iface.c @ 29544:c9845a081a3a

Fix parameter to actually be a string instead of an object.
author maiku@pidgin.im
date Fri, 23 Oct 2009 00:00:44 +0000
parents af08588c06f5
children 9f16127441e8
comparison
equal deleted inserted replaced
29543:4aa30863743b 29544:c9845a081a3a
52 52
53 if (is_initialized) 53 if (is_initialized)
54 return; 54 return;
55 55
56 g_object_class_install_property(iface, PROP_CONFERENCE_TYPE, 56 g_object_class_install_property(iface, PROP_CONFERENCE_TYPE,
57 g_param_spec_object("conference-type", 57 g_param_spec_string("conference-type",
58 "Conference Type", 58 "Conference Type",
59 "The type of conference that this backend " 59 "The type of conference that this backend "
60 "has been created to provide.", 60 "has been created to provide.",
61 G_TYPE_STRING, 61 NULL,
62 G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE)); 62 G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE));
63 g_object_class_install_property(iface, PROP_MEDIA, 63 g_object_class_install_property(iface, PROP_MEDIA,
64 g_param_spec_object("media", 64 g_param_spec_object("media",
65 "Purple Media", 65 "Purple Media",
66 "The media object that this backend is bound to.", 66 "The media object that this backend is bound to.",