system-settings: fix issues with system settings service property types

This commit is contained in:
Dan Williams
2009-08-10 23:52:03 -05:00
parent 155f19cb2a
commit 71507c9fa3
2 changed files with 7 additions and 9 deletions

View File

@@ -75,11 +75,11 @@ nm_settings_system_interface_init (gpointer g_iface)
g_object_interface_install_property
(g_iface,
g_param_spec_string (NM_SETTINGS_SYSTEM_INTERFACE_CAN_MODIFY,
"CanModify",
"Can modify anything (hostname, connections, etc)",
NULL,
G_PARAM_READABLE));
g_param_spec_boolean (NM_SETTINGS_SYSTEM_INTERFACE_CAN_MODIFY,
"CanModify",
"Can modify anything (hostname, connections, etc)",
FALSE,
G_PARAM_READABLE));
initialized = TRUE;
}