| 592 g_object_class_install_property(object_class, |
592 g_object_class_install_property(object_class, |
| 593 PROP_ACCOUNT, |
593 PROP_ACCOUNT, |
| 594 g_param_spec_pointer("account", |
594 g_param_spec_pointer("account", |
| 595 "Account", |
595 "Account", |
| 596 "The account, or NULL for all accounts", |
596 "The account, or NULL for all accounts", |
| 597 G_PARAM_READWRITE |
597 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
| 598 ) |
598 ) |
| 599 ); |
599 ); |
| 600 g_object_class_install_property(object_class, |
600 g_object_class_install_property(object_class, |
| 601 PROP_ICON_SEL, |
601 PROP_ICON_SEL, |
| 602 g_param_spec_boolean("iconsel", |
602 g_param_spec_boolean("iconsel", |
| 603 "Icon Selector", |
603 "Icon Selector", |
| 604 "Whether the icon selector should be displayed or not.", |
604 "Whether the icon selector should be displayed or not.", |
| 605 FALSE, |
605 FALSE, |
| 606 G_PARAM_READWRITE |
606 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
| 607 ) |
607 ) |
| 608 ); |
608 ); |
| 609 } |
609 } |
| 610 |
610 |
| 611 /** |
611 /** |