Window.show() is deprecated in jdk 1.5, replaced with setVisible(true).

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2965 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2004-02-22 18:55:26 +00:00
parent bfe9cbba04
commit 796c953c89
4 changed files with 8 additions and 8 deletions
@@ -1,5 +1,5 @@
//
// $Id: MiCasaApp.java,v 1.11 2004/01/24 05:58:16 mdb Exp $
// $Id: MiCasaApp.java,v 1.12 2004/02/22 18:55:26 ray Exp $
package com.threerings.micasa.client;
@@ -48,7 +48,7 @@ public class MiCasaApp
// position everything and show the frame
_frame.setSize(800, 600);
SwingUtil.centerWindow(_frame);
_frame.show();
_frame.setVisible(true);
Client client = _client.getContext().getClient();