GSettings endian: missed a spot

Missed an instance of get_value -> get_raw_value search/replace.
This commit is contained in:
Ryan Lortie 2010-10-03 23:15:27 -04:00
parent c84441fbb3
commit 9211d2b00c

View File

@ -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);