[glib] GKeyFile: fix annotation of g_key_file_load_from_data
- From: Giovanni Campagna <gcampagna src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] GKeyFile: fix annotation of g_key_file_load_from_data
- Date: Tue, 14 Feb 2012 18:05:45 +0000 (UTC)
commit d240b883155183fcb9723766b4e4b4b5a0db57ff
Author: Giovanni Campagna <gcampagna src gnome org>
Date: Mon Feb 13 16:42:44 2012 +0100
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
glib/gkeyfile.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/glib/gkeyfile.c b/glib/gkeyfile.c
index 7b1f595..5f3610c 100644
--- a/glib/gkeyfile.c
+++ b/glib/gkeyfile.c
@@ -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
*
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]