From c00f76f14181224aeeb3b99418a89e86122450bf Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Sat, 25 Mar 2006 00:35:05 +0000 Subject: [PATCH] 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 --- src/as/com/threerings/presents/client/Client.as | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/presents/client/Client.as b/src/as/com/threerings/presents/client/Client.as index 09f9dcaf2..01d1d1f13 100644 --- a/src/as/com/threerings/presents/client/Client.as +++ b/src/as/com/threerings/presents/client/Client.as @@ -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); }