mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 05:56:14 +01:00
GSettings: implement .property_get('path')
This was unimplemented in g_settings_get_property(), leading to a failed 'g_assert_not_reached()'.
This commit is contained in:
parent
5af11ae4bc
commit
ed9db23f9a
@ -417,6 +417,10 @@ g_settings_get_property (GObject *object,
|
||||
g_value_set_string (value, settings->priv->schema_name);
|
||||
break;
|
||||
|
||||
case PROP_PATH:
|
||||
g_value_set_string (value, settings->priv->path);
|
||||
break;
|
||||
|
||||
case PROP_HAS_UNAPPLIED:
|
||||
g_value_set_boolean (value, g_settings_get_has_unapplied (settings));
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user