mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-13 12:37:46 +02:00
add internal g_settings_schema_get_name()
This commit is contained in:
@@ -31,6 +31,8 @@ GSettingsSchema * g_settings_schema_ref (GSettin
|
||||
G_GNUC_INTERNAL
|
||||
void g_settings_schema_unref (GSettingsSchema *schema);
|
||||
G_GNUC_INTERNAL
|
||||
const gchar * g_settings_schema_get_name (GSettingsSchema *schema);
|
||||
G_GNUC_INTERNAL
|
||||
const gchar * g_settings_schema_get_path (GSettingsSchema *schema);
|
||||
G_GNUC_INTERNAL
|
||||
const gchar * g_settings_schema_get_gettext_domain (GSettingsSchema *schema);
|
||||
|
@@ -356,3 +356,9 @@ g_settings_schema_list (GSettingsSchema *schema,
|
||||
*n_items = schema->n_items;
|
||||
return schema->items;
|
||||
}
|
||||
|
||||
const gchar *
|
||||
g_settings_schema_get_name (GSettingsSchema *schema)
|
||||
{
|
||||
return schema->name;
|
||||
}
|
||||
|
Reference in New Issue
Block a user