From bd430c78ec7d956933f1bf732401299fa379164c Mon Sep 17 00:00:00 2001 From: kramm Date: Tue, 23 Dec 2008 18:44:19 +0000 Subject: [PATCH] methodbody and method were exchanged: fixed --- lib/as3/mkabc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/as3/mkabc.py b/lib/as3/mkabc.py index f7266ca..82283ab 100644 --- a/lib/as3/mkabc.py +++ b/lib/as3/mkabc.py @@ -66,9 +66,9 @@ for line in fi.readlines(): elif c in "nubs": type,pname="int","v" elif c == "m": - type,pname="abc_method_body_t*","m" - elif c == "i": type,pname="abc_method_t*","m" + elif c == "i": + type,pname="abc_method_body_t*","m" elif c == "c": type,pname="abc_class_t*","m" elif c == "j": -- 1.7.10.4