| 107 * The protocol which is currently selected. |
107 * The protocol which is currently selected. |
| 108 * |
108 * |
| 109 * Since: 3.0 |
109 * Since: 3.0 |
| 110 **/ |
110 **/ |
| 111 properties[PROP_PROTOCOL] = g_param_spec_object( |
111 properties[PROP_PROTOCOL] = g_param_spec_object( |
| 112 "protocol", |
112 "protocol", NULL, NULL, |
| 113 "protocol", |
|
| 114 "The PurpleProtocol which is currently selected", |
|
| 115 PURPLE_TYPE_PROTOCOL, |
113 PURPLE_TYPE_PROTOCOL, |
| 116 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); |
114 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); |
| 117 |
115 |
| 118 g_object_class_install_properties(obj_class, N_PROPERTIES, properties); |
116 g_object_class_install_properties(obj_class, N_PROPERTIES, properties); |
| 119 |
117 |