mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-24 11:12:11 +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
46205a2d0d
commit
900a4c853f
@ -417,6 +417,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…
x
Reference in New Issue
Block a user