[glib] GSettings endian: missed a spot



commit 9211d2b00c82057864631a78b1f4ba1d36ee7b5c
Author: Ryan Lortie <desrt desrt ca>
Date:   Sun Oct 3 23:15:27 2010 -0400

    GSettings endian: missed a spot
    
    Missed an instance of get_value -> get_raw_value search/replace.

 gio/gsettingsschema.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gio/gsettingsschema.c b/gio/gsettingsschema.c
index 9ffa6ed..51567c1 100644
--- a/gio/gsettingsschema.c
+++ b/gio/gsettingsschema.c
@@ -299,7 +299,7 @@ g_settings_schema_get_value (GSettingsSchema *schema,
   GVariantIter *iter;
   GVariant *value;
 
-  value = gvdb_table_get_value (schema->priv->table, key);
+  value = gvdb_table_get_raw_value (schema->priv->table, key);
 
   if G_UNLIKELY (value == NULL)
     g_error ("schema does not contain a key named '%s'", key);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]