From d9f5328f1ce923a79da64ac4831a90720f9208a1 Mon Sep 17 00:00:00 2001 From: Jamie Doornbos Date: Mon, 27 Oct 2008 07:54:38 +0000 Subject: [PATCH] Fixed recent breakage of actionscript bureaus. Apparently tamarin does not like constant members assigned in a base class? Weird but plausible if it (buggily) sets up all members of a class and assigns defaults values before constructing bases. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5470 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/bureau/client/BureauDirector.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/bureau/client/BureauDirector.as b/src/as/com/threerings/bureau/client/BureauDirector.as index 4a058b843..4652942a5 100644 --- a/src/as/com/threerings/bureau/client/BureauDirector.as +++ b/src/as/com/threerings/bureau/client/BureauDirector.as @@ -153,7 +153,7 @@ public class BureauDirector extends BasicDirector } /** Create a logger for the entire package.. */ - protected const log :Log = Log.getLog("com.threerings.bureau"); + protected var log :Log = Log.getLog("com.threerings.bureau"); protected var _bureauService :BureauService; protected var _agents :HashMap = new HashMap();