Have to separately alloc and init now.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@878 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-01-19 04:16:02 +00:00
parent c6b0638e9e
commit a0a1a48057
@@ -1,5 +1,5 @@
//
// $Id: MiCasaApplet.java,v 1.4 2001/10/25 23:43:02 mdb Exp $
// $Id: MiCasaApplet.java,v 1.5 2002/01/19 04:16:02 mdb Exp $
package com.threerings.micasa.client;
@@ -29,7 +29,8 @@ public class MiCasaApplet extends Applet
_frame = new MiCasaFrame();
// create our client instance
_client = new MiCasaClient(_frame);
_client = new MiCasaClient();
_client.init(_frame);
String username = requireParameter("username");
String authkey = requireParameter("authkey");