Bug 636100 - Can't read GSettings:backend property

The PROP_BACKEND case was missing from the switch statement in
g_settings_get_property().
This commit is contained in:
Matthew Barnes 2010-11-30 18:19:12 -06:00
parent beec9743eb
commit 9fe7fd9120

View File

@ -435,6 +435,10 @@ g_settings_get_property (GObject *object,
g_value_set_string (value, settings->priv->schema_name);
break;
case PROP_BACKEND:
g_value_set_object (value, settings->priv->backend);
break;
case PROP_PATH:
g_value_set_string (value, settings->priv->path);
break;