diff options
author | Dan Winship <danw@gnome.org> | 2011-05-19 16:21:13 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2011-08-12 11:10:43 -0400 |
commit | 5fd2fa5bf5a07a66d2150740d534a398598e8dd1 (patch) | |
tree | d40cb5a96e53cd518c8a00e14855bf6196fcf03b /girepository/girnode.h | |
parent | 4dabe20ed5753bccd2abf8ad02e95ce6ab53036c (diff) | |
download | gobject-introspection-5fd2fa5bf5a07a66d2150740d534a398598e8dd1.tar.gz |
Switch to storing string form of error quarks
Instead of storing the name of the function to call to get the
error quark, store the string form of the error quark, which
we derive from the introspection binary during scanning.
Update EnumBlob and GIEnumInfo to include the new information.
This will allow determining a back-mapping from error quark
to error domain without having to dlsym() and call all the
known error quark functions.
Based on earlier patches from Owen Taylor and Maxim Ermilov.
https://bugzilla.gnome.org/show_bug.cgi?id=602516
Diffstat (limited to 'girepository/girnode.h')
-rw-r--r-- | girepository/girnode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/girepository/girnode.h b/girepository/girnode.h index fb2616b1..6e03821b 100644 --- a/girepository/girnode.h +++ b/girepository/girnode.h @@ -285,6 +285,7 @@ struct _GIrNodeEnum gchar *gtype_name; gchar *gtype_init; + gchar *error_domain; GList *values; }; |