mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 05:56:14 +01:00
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:
parent
beec9743eb
commit
9fe7fd9120
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user