From: Matthias Clasen Date: Sat, 8 Feb 2014 18:47:02 +0000 (-0500) Subject: Docs: convert another table to a list X-Git-Tag: 2.39.90~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03b21a19ec94da5c48fdfb798067d037f381e8b1;p=platform%2Fupstream%2Fglib.git Docs: convert another table to a list --- diff --git a/glib/gvariant.c b/glib/gvariant.c index a64793b..b207354 100644 --- a/glib/gvariant.c +++ b/glib/gvariant.c @@ -1074,21 +1074,11 @@ g_variant_lookup_value (GVariant *dictionary, * In particular, arrays of these fixed-sized types can be interpreted * as an array of the given C type, with @element_size set to the size * the appropriate type: - * - * - * - * element type C type - * - * %G_VARIANT_TYPE_INT16 (etc.) - * #gint16 (etc.) - * %G_VARIANT_TYPE_BOOLEAN - * #guchar (not #gboolean!) - * %G_VARIANT_TYPE_BYTE #guchar - * %G_VARIANT_TYPE_HANDLE #guint32 - * %G_VARIANT_TYPE_DOUBLE #gdouble - * - * - * + * - %G_VARIANT_TYPE_INT16 (etc.): #gint16 (etc.) + * - %G_VARIANT_TYPE_BOOLEAN: #guchar (not #gboolean!) + * - %G_VARIANT_TYPE_BYTE: #guchar + * - %G_VARIANT_TYPE_HANDLE: #guint32 + * - %G_VARIANT_TYPE_DOUBLE: #gdouble * * For example, if calling this function for an array of 32-bit integers, * you might say sizeof(gint32). This value isn't used except for the purpose