- Some deflexing of the low-level narya stuff. More to come, as we're

going to want the minimum client to be flex-free.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4507 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2007-01-22 19:58:24 +00:00
parent d10b94df85
commit e6c38e81c6
11 changed files with 206 additions and 95 deletions
@@ -26,8 +26,6 @@ import flash.events.TimerEvent;
import flash.utils.Timer;
import flash.utils.getTimer; // function import
import mx.collections.IList;
import com.threerings.util.ClassUtil;
import com.threerings.util.HashMap;
@@ -227,10 +225,10 @@ public class ClientDObjectMgr
// if this is a compound event, we need to process its contained
// events in order
if (event is CompoundEvent) {
var events :IList = (event as CompoundEvent).getEvents();
var events :Array = (event as CompoundEvent).getEvents();
var ecount :int = events.length;
for (var ii :int = 0; ii < ecount; ii++) {
dispatchEvent(events.getItemAt(ii) as DEvent);
dispatchEvent(events[ii] as DEvent);
}
return;
}