mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-05-02 20:16:52 +02: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);
|
g_value_set_string (value, settings->priv->schema_name);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case PROP_BACKEND:
|
||||||
|
g_value_set_object (value, settings->priv->backend);
|
||||||
|
break;
|
||||||
|
|
||||||
case PROP_PATH:
|
case PROP_PATH:
|
||||||
g_value_set_string (value, settings->priv->path);
|
g_value_set_string (value, settings->priv->path);
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user