GSettingsBackend API/ABI change

- add list() virtual method
  - add 'default_value' flag to read() call
This commit is contained in:
Ryan Lortie
2010-04-25 22:00:28 -05:00
parent 9ba690b386
commit 8dddf6499e
9 changed files with 96 additions and 35 deletions

View File

@@ -751,7 +751,7 @@ g_settings_get_value (GSettings *settings,
path = g_strconcat (settings->priv->path, key, NULL);
type = g_variant_get_type (sval);
value = g_settings_backend_read (settings->priv->backend, path, type);
value = g_settings_backend_read (settings->priv->backend, path, type, FALSE);
g_free (path);
if (options != NULL)