mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 07:23:41 +02:00
schema source: avoid introspection confusion
Any method that has its prefix'd argument as its first parameter will be interpreted by introspection as a method. We don't want this, so we need to swap the first two parameters.
This commit is contained in:
committed by
Ryan Lortie
parent
bef773408c
commit
6339b5fe2d
@@ -95,8 +95,8 @@ g_settings_schema_source_unref (GSettingsSchemaSource *source)
|
||||
}
|
||||
|
||||
GSettingsSchemaSource *
|
||||
g_settings_schema_source_new_from_directory (GSettingsSchemaSource *parent,
|
||||
const gchar *directory,
|
||||
g_settings_schema_source_new_from_directory (const gchar *directory,
|
||||
GSettingsSchemaSource *parent,
|
||||
gboolean trusted,
|
||||
GError **error)
|
||||
{
|
||||
|
Reference in New Issue
Block a user