# HG changeset patch # User maiku@pidgin.im # Date 1256252328 0 # Node ID af08588c06f5d7efcb03b2eb66ee1b65c96c356a # Parent d1955da88264459e58537f28a7a9f230ba24bf07 Add the conference-type property to the media backend interface. diff -r d1955da88264 -r af08588c06f5 libpurple/media/backend-iface.c --- a/libpurple/media/backend-iface.c Thu Oct 22 22:30:03 2009 +0000 +++ b/libpurple/media/backend-iface.c Thu Oct 22 22:58:48 2009 +0000 @@ -41,6 +41,7 @@ enum { PROP_0, + PROP_CONFERENCE_TYPE, PROP_MEDIA, }; @@ -52,6 +53,13 @@ if (is_initialized) return; + g_object_class_install_property(iface, PROP_CONFERENCE_TYPE, + g_param_spec_object("conference-type", + "Conference Type", + "The type of conference that this backend " + "has been created to provide.", + G_TYPE_STRING, + G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE)); g_object_class_install_property(iface, PROP_MEDIA, g_param_spec_object("media", "Purple Media",