Finally broke down and changed createPlaceView() to eliminate the annoying

potential fuckola of being called before the controller gets around to
initializing the casted context it almost certainly needs to create its
place view.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3440 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-03-30 01:09:30 +00:00
parent 2299e6a1de
commit afa995ebb9
5 changed files with 28 additions and 8 deletions
@@ -50,7 +50,7 @@ public class LobbyController extends PlaceController
_ctx.getParlorDirector().setInvitationHandler(this);
}
protected PlaceView createPlaceView ()
protected PlaceView createPlaceView (CrowdContext ctx)
{
return new LobbyPanel(_ctx, _config);
}