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: MisoScenePanel.java,v 1.57 2004/01/12 05:53:59 mdb Exp $
// $Id: MisoScenePanel.java,v 1.58 2004/02/22 18:55:26 ray Exp $
package com.threerings.miso.client;
@@ -364,7 +364,7 @@ public class MisoScenePanel extends VirtualMediaPanel
_dframe = new JFrame("Scene block resolver");
_dframe.setContentPane(_dpanel);
_dframe.pack();
_dframe.show();
_dframe.setVisible(true);
}
}