Got compiling working under Linux, now correcting various errors.

Checkpoint.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3866 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-02-20 02:38:56 +00:00
parent f8c8f6e983
commit 7a80c5cb43
41 changed files with 453 additions and 141 deletions
@@ -41,7 +41,7 @@ public class CompoundEvent extends DEvent
/**
* Constructs a compound event and prepares it for operation.
*/
public CompoundEvent (target :DObject, omgr :DObjectManager)
public function CompoundEvent (target :DObject, omgr :DObjectManager)
{
super(target.getOid());
@@ -112,18 +112,6 @@ public class CompoundEvent extends DEvent
_events.removeAll();
}
/**
* We need to propagate our source oid to our constituent events.
*/
public override function setSourceOid (sourceOid :int) :void
{
super.setSourceOid(sourceOid);
for (var ii :int = 0; ii < _events.length; ii++) {
_events.getItemAt(ii).setSourceOid(sourceOid);
}
}
/**
* Nothing to apply here.
*/
@@ -145,10 +133,10 @@ public class CompoundEvent extends DEvent
}
// documentation inherited
protected override function toString (buf :StringBuilder) :void
protected override function toStringBuf (buf :StringBuilder) :void
{
buf.append("COMPOUND:");
super.toString(buf);
super.toStringBuf(buf);
for (var ii :int = 0; ii < _events.length; ii++) {
buf.append(", ", _events.getItemAt(ii));