fix GIArgument being exported as _Argument in .gir

https://bugzilla.gnome.org/show_bug.cgi?id=635128
This commit is contained in:
Alan Knowles 2012-06-28 12:07:35 -04:00 committed by Colin Walters
parent df10915ba5
commit 849c7c2f66

View File

@ -158,7 +158,12 @@ typedef GIBaseInfo GITypeInfo;
*/
typedef struct _GIUnresolvedInfo GIUnresolvedInfo;
union _GIArgument
/**
* GIArgument:
*
* Stores an argument of varying type
*/
typedef union
{
gboolean v_boolean;
gint8 v_int8;
@ -181,8 +186,7 @@ union _GIArgument
gsize v_size;
gchar * v_string;
gpointer v_pointer;
};
typedef union _GIArgument GIArgument;
} GIArgument;
/**
* GIInfoType: