mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 23:16:14 +01:00
add internal g_settings_schema_get_name()
This commit is contained in:
parent
e6b4074e41
commit
10907cafc3
@ -31,6 +31,8 @@ GSettingsSchema * g_settings_schema_ref (GSettin
|
|||||||
G_GNUC_INTERNAL
|
G_GNUC_INTERNAL
|
||||||
void g_settings_schema_unref (GSettingsSchema *schema);
|
void g_settings_schema_unref (GSettingsSchema *schema);
|
||||||
G_GNUC_INTERNAL
|
G_GNUC_INTERNAL
|
||||||
|
const gchar * g_settings_schema_get_name (GSettingsSchema *schema);
|
||||||
|
G_GNUC_INTERNAL
|
||||||
const gchar * g_settings_schema_get_path (GSettingsSchema *schema);
|
const gchar * g_settings_schema_get_path (GSettingsSchema *schema);
|
||||||
G_GNUC_INTERNAL
|
G_GNUC_INTERNAL
|
||||||
const gchar * g_settings_schema_get_gettext_domain (GSettingsSchema *schema);
|
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;
|
*n_items = schema->n_items;
|
||||||
return schema->items;
|
return schema->items;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const gchar *
|
||||||
|
g_settings_schema_get_name (GSettingsSchema *schema)
|
||||||
|
{
|
||||||
|
return schema->name;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user