| 328 * The account that this row will be representing. |
328 * The account that this row will be representing. |
| 329 * |
329 * |
| 330 * Since: 3.0 |
330 * Since: 3.0 |
| 331 */ |
331 */ |
| 332 properties[PROP_ACCOUNT] = g_param_spec_object( |
332 properties[PROP_ACCOUNT] = g_param_spec_object( |
| 333 "account", "account", |
333 "account", NULL, NULL, |
| 334 "The account that this row is representing", |
|
| 335 PURPLE_TYPE_ACCOUNT, |
334 PURPLE_TYPE_ACCOUNT, |
| 336 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); |
335 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); |
| 337 |
336 |
| 338 g_object_class_install_properties(obj_class, N_PROPERTIES, properties); |
337 g_object_class_install_properties(obj_class, N_PROPERTIES, properties); |
| 339 |
338 |