X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/1656cfade4879af0cb003e3847e58264caa5781f..b17287deb56775a49030d738d8c8c0e9cd15f9fe:/src/tree.c diff --git a/src/tree.c b/src/tree.c index d695b45..b92f771 100644 --- a/src/tree.c +++ b/src/tree.c @@ -78,7 +78,10 @@ new_funcarg(Type *atype, char *name, GList *checks) } Node * -new_method(int scope, int method, Type *mtype, char *otype, GList *gtktypes, char *id, GList *args, char *onerror, char *cbuf, int line_no, int ccode_line, gboolean vararg) +new_method(int scope, int method, Type *mtype, char *otype, + GList *gtktypes, GList *flags, char *id, GList *args, + char *onerror, char *cbuf, int line_no, int ccode_line, + gboolean vararg) { Method *node = (Method *)g_new(Node,1); node->type = METHOD_NODE; @@ -87,6 +90,7 @@ new_method(int scope, int method, Type *mtype, char *otype, GList *gtktypes, cha node->mtype = mtype; node->otype = otype; node->gtktypes = gtktypes; + node->flags = flags; node->id = id; node->args = args; node->onerror = onerror;