mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
gsettingsschema: Port to new GVDB API
This should introduce no functional changes. Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
parent
705dd2b9a9
commit
c652d45c97
@ -231,7 +231,7 @@ g_settings_schema_source_unref (GSettingsSchemaSource *source)
|
||||
|
||||
if (source->parent)
|
||||
g_settings_schema_source_unref (source->parent);
|
||||
gvdb_table_unref (source->table);
|
||||
gvdb_table_free (source->table);
|
||||
g_free (source->directory);
|
||||
|
||||
if (source->text_tables)
|
||||
@ -802,7 +802,7 @@ g_settings_schema_source_list_schemas (GSettingsSchemaSource *source,
|
||||
else
|
||||
g_hash_table_add (reloc, schema);
|
||||
|
||||
gvdb_table_unref (table);
|
||||
gvdb_table_free (table);
|
||||
}
|
||||
}
|
||||
|
||||
@ -928,7 +928,7 @@ g_settings_schema_unref (GSettingsSchema *schema)
|
||||
g_settings_schema_unref (schema->extends);
|
||||
|
||||
g_settings_schema_source_unref (schema->source);
|
||||
gvdb_table_unref (schema->table);
|
||||
gvdb_table_free (schema->table);
|
||||
g_free (schema->items);
|
||||
g_free (schema->id);
|
||||
|
||||
@ -1188,7 +1188,7 @@ g_settings_schema_list (GSettingsSchema *schema,
|
||||
g_hash_table_iter_remove (&iter);
|
||||
}
|
||||
|
||||
gvdb_table_unref (child_table);
|
||||
gvdb_table_free (child_table);
|
||||
}
|
||||
|
||||
/* Now create the list */
|
||||
|
Loading…
Reference in New Issue
Block a user