diff options
author | Johan Dahlin <johan@src.gnome.org> | 2008-08-07 22:15:22 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-08-07 22:15:22 +0000 |
commit | f9fd9816e02f05542aba93d7de00b2c982c63f50 (patch) | |
tree | bbadf87dc7440c65f32e86a1a7a471bf508916c3 /tools/girparser.c | |
parent | b2d590a941da696ae2389a5dac49bc51feeed947 (diff) | |
download | gobject-introspection-gir-compiler.tar.gz |
Add string/any/sequence to the parser/typelibgir-compiler
svn path=/branches/gir-compiler/; revision=324
Diffstat (limited to 'tools/girparser.c')
-rw-r--r-- | tools/girparser.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/girparser.c b/tools/girparser.c index c8235364..565542c4 100644 --- a/tools/girparser.c +++ b/tools/girparser.c @@ -184,7 +184,8 @@ parse_type_internal (gchar *str, gchar **rest) { "gdouble", TYPE_TAG_DOUBLE, 0 }, { "utf8", TYPE_TAG_UTF8, 1 }, { "gchar*", TYPE_TAG_UTF8, 1 }, - { "filename", TYPE_TAG_FILENAME,1 } + { "filename", TYPE_TAG_FILENAME,1 }, + { "string", TYPE_TAG_STRING, 1 } }; gint n_basic = G_N_ELEMENTS (basic); |