]> git.draconx.ca Git - gob-dx.git/blobdiff - src/tree.c
Release 0.92.4
[gob-dx.git] / src / tree.c
index d695b453185c9addf9f8147322b222a176b288f4..b92f771024fa3e21197f645b1bd039e86fa0a43e 100644 (file)
@@ -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;