pidgin/pidginaccounteditor.c

changeset 43072
a59a119b74f5
parent 42979
d9f973ac3afd
child 43300
0604c6839974
equal deleted inserted replaced
43071:071588186662 43072:a59a119b74f5
1178 * The account that this editor is modifying. 1178 * The account that this editor is modifying.
1179 * 1179 *
1180 * Since: 3.0 1180 * Since: 3.0
1181 */ 1181 */
1182 properties[PROP_ACCOUNT] = g_param_spec_object( 1182 properties[PROP_ACCOUNT] = g_param_spec_object(
1183 "account", "account", 1183 "account", NULL, NULL,
1184 "The account to modify",
1185 PURPLE_TYPE_ACCOUNT, 1184 PURPLE_TYPE_ACCOUNT,
1186 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); 1185 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
1187 1186
1188 /** 1187 /**
1189 * PidginAccountEditor:valid: 1188 * PidginAccountEditor:valid:
1192 * account. 1191 * account.
1193 * 1192 *
1194 * Since: 3.0 1193 * Since: 3.0
1195 */ 1194 */
1196 properties[PROP_VALID] = g_param_spec_boolean( 1195 properties[PROP_VALID] = g_param_spec_boolean(
1197 "valid", "valid", 1196 "valid", NULL, NULL,
1198 "Whether or not the account settings are valid",
1199 FALSE, 1197 FALSE,
1200 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS); 1198 G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
1201 1199
1202 g_object_class_install_properties(obj_class, N_PROPERTIES, properties); 1200 g_object_class_install_properties(obj_class, N_PROPERTIES, properties);
1203 1201

mercurial