Clarify docs/params for 'schema' vs 'schema id'

Clean up our parameter naming and documentation to draw a clearer line
between a schema and its identifier.
This commit is contained in:
Ryan Lortie
2011-11-15 12:42:02 +00:00
parent 1e70072065
commit 446eda8c2b
2 changed files with 28 additions and 25 deletions

View File

@@ -73,12 +73,12 @@ GType g_settings_get_type (void);
const gchar * const * g_settings_list_schemas (void);
const gchar * const * g_settings_list_relocatable_schemas (void);
GSettings * g_settings_new (const gchar *schema);
GSettings * g_settings_new_with_path (const gchar *schema,
GSettings * g_settings_new (const gchar *schema_id);
GSettings * g_settings_new_with_path (const gchar *schema_id,
const gchar *path);
GSettings * g_settings_new_with_backend (const gchar *schema,
GSettings * g_settings_new_with_backend (const gchar *schema_id,
GSettingsBackend *backend);
GSettings * g_settings_new_with_backend_and_path (const gchar *schema,
GSettings * g_settings_new_with_backend_and_path (const gchar *schema_id,
GSettingsBackend *backend,
const gchar *path);
GSettings * g_settings_new_full (GSettingsSchema *schema,