Made the methods public and it still doesn't work. There's some awful bug

in the compiler or runtime, I think.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3979 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-03-25 00:35:05 +00:00
parent 9a6ea2f7a6
commit c00f76f141
@@ -264,13 +264,15 @@ public class Client extends EventDispatcher
}
}
internal function gotClientObject (clobj :ClientObject) :void
// TODO: this should be 'internal' except for a fucking bug with AS3
public function gotClientObject (clobj :ClientObject) :void
{
_clobj = clobj;
notifyObservers(ClientEvent.CLIENT_DID_LOGON);
}
internal function getClientObjectFailed (cause :Error) :void
// TODO: this should be 'internal' except for a fucking bug with AS3
public function getClientObjectFailed (cause :Error) :void
{
notifyObservers(ClientEvent.CLIENT_FAILED_TO_LOGON, cause);
}