pidgin/pidginaccountchooser.c

changeset 42649
6986f5428d30
parent 42584
687260353985
child 43072
a59a119b74f5
equal deleted inserted replaced
42648:70d33d4dac09 42649:6986f5428d30
107 107
108 /* Properties */ 108 /* Properties */
109 obj_class->get_property = pidgin_account_chooser_get_property; 109 obj_class->get_property = pidgin_account_chooser_get_property;
110 obj_class->set_property = pidgin_account_chooser_set_property; 110 obj_class->set_property = pidgin_account_chooser_set_property;
111 111
112 /**
113 * PidginAccountChooser:account:
114 *
115 * The account that is currently selected.
116 *
117 * Since: 3.0
118 */
112 properties[PROP_ACCOUNT] = g_param_spec_object( 119 properties[PROP_ACCOUNT] = g_param_spec_object(
113 "account", "Account", "The account that is currently selected.", 120 "account", "Account",
121 "The account that is currently selected.",
114 PURPLE_TYPE_ACCOUNT, 122 PURPLE_TYPE_ACCOUNT,
115 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); 123 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
116 124
125 /**
126 * PidginAccountChooser:filter:
127 *
128 * A filter to be applied to the list of accounts.
129 *
130 * Since: 3.0
131 */
117 properties[PROP_FILTER] = g_param_spec_object( 132 properties[PROP_FILTER] = g_param_spec_object(
118 "filter", "filter", 133 "filter", "filter",
119 "The filter to be applied on the list of accounts.", 134 "The filter to be applied on the list of accounts.",
120 GTK_TYPE_FILTER, 135 GTK_TYPE_FILTER,
121 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); 136 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);

mercurial