mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 19:36:18 +01:00
GKeyFile: fix annotation of g_key_file_load_from_data
(array) without (element-type) means "array of the same type as the C type", so gchar* with (array) is interpreted as an array of strings. Since GKeyFiles must be UTF-8 encoded anyway, just annotate it as a string. https://bugzilla.gnome.org/show_bug.cgi?id=658484
This commit is contained in:
parent
5b8a6900d3
commit
d240b88315
@ -862,8 +862,8 @@ g_key_file_load_from_file (GKeyFile *key_file,
|
||||
/**
|
||||
* g_key_file_load_from_data:
|
||||
* @key_file: an empty #GKeyFile struct
|
||||
* @data: (array length=length): key file loaded in memory
|
||||
* @length: the length of @data in bytes
|
||||
* @data: key file loaded in memory
|
||||
* @length: the length of @data in bytes (or -1 if data is nul-terminated)
|
||||
* @flags: flags from #GKeyFileFlags
|
||||
* @error: return location for a #GError, or %NULL
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user