GSettingsSchemaSource: fix parameter name in header
authorRyan Lortie <desrt@desrt.ca>
Tue, 29 Oct 2013 03:48:53 +0000 (20:48 -0700)
committerRyan Lortie <desrt@desrt.ca>
Tue, 29 Oct 2013 03:50:01 +0000 (20:50 -0700)
list_schemas() had the parameters called 'recursive' and 'non-recursive'
in the header instead of 'relocatable'.  Fix that.

gio/gsettingsschema.c
gio/gsettingsschema.h

index bdbb08d..10a8c2b 100644 (file)
@@ -727,10 +727,9 @@ g_settings_schema_source_get_text_tables (GSettingsSchemaSource *source)
  * g_settings_schema_source_list_schemas:
  * @source: a #GSettingsSchemaSource
  * @recursive: if we should recurse
- * @non_relocatable_schemas: (out) (transfer full): the list of
- *   non-relocatable schemas
- * @relocatable_schemas: (out) (transfer full): the list of relocatable
+ * @non_relocatable: (out) (transfer full): the list of non-relocatable
  *   schemas
+ * @relocatable: (out) (transfer full): the list of relocatable schemas
  *
  * Lists the schemas in a given source.
  *
@@ -750,8 +749,8 @@ g_settings_schema_source_get_text_tables (GSettingsSchemaSource *source)
 void
 g_settings_schema_source_list_schemas (GSettingsSchemaSource   *source,
                                        gboolean                 recursive,
-                                       gchar                 ***non_relocatable_schemas,
-                                       gchar                 ***relocatable_schemas)
+                                       gchar                 ***non_relocatable,
+                                       gchar                 ***relocatable)
 {
   GHashTable *single, *reloc;
   GSettingsSchemaSource *s;
@@ -799,15 +798,15 @@ g_settings_schema_source_list_schemas (GSettingsSchemaSource   *source,
         break;
     }
 
-  if (non_relocatable_schemas)
+  if (non_relocatable)
     {
-      *non_relocatable_schemas = (gchar **) g_hash_table_get_keys_as_array (single, NULL);
+      *non_relocatable = (gchar **) g_hash_table_get_keys_as_array (single, NULL);
       g_hash_table_steal_all (single);
     }
 
-  if (relocatable_schemas)
+  if (relocatable)
     {
-      *relocatable_schemas = (gchar **) g_hash_table_get_keys_as_array (reloc, NULL);
+      *relocatable = (gchar **) g_hash_table_get_keys_as_array (reloc, NULL);
       g_hash_table_steal_all (reloc);
     }
 
index 90ef37a..9038939 100644 (file)
@@ -54,8 +54,8 @@ GSettingsSchema *       g_settings_schema_source_lookup                 (GSettin
 GLIB_AVAILABLE_IN_2_40
 void                    g_settings_schema_source_list_schemas           (GSettingsSchemaSource   *source,
                                                                          gboolean                 recursive,
-                                                                         gchar                 ***non_recursive_schemas,
-                                                                         gchar                 ***recursive_schemas);
+                                                                         gchar                 ***non_relocatable,
+                                                                         gchar                 ***relocatable);
 
 #define                 G_TYPE_SETTINGS_SCHEMA                          (g_settings_schema_get_type ())
 GLIB_AVAILABLE_IN_2_32