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:
@@ -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;
|
_clobj = clobj;
|
||||||
notifyObservers(ClientEvent.CLIENT_DID_LOGON);
|
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);
|
notifyObservers(ClientEvent.CLIENT_FAILED_TO_LOGON, cause);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user