Bug 636100 - Can't read GSettings:backend property
authorMatthew Barnes <mbarnes@redhat.com>
Wed, 1 Dec 2010 00:19:12 +0000 (18:19 -0600)
committerMatthew Barnes <mbarnes@redhat.com>
Wed, 1 Dec 2010 00:21:10 +0000 (18:21 -0600)
The PROP_BACKEND case was missing from the switch statement in
g_settings_get_property().

gio/gsettings.c

index 8c3bd72..d88ad01 100644 (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;