From: Bill Kuker Date: Thu, 16 Apr 2009 14:41:30 +0000 (+0000) Subject: Updated main func to use showAsWindow X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=cc03cae718970bba87f18ace94e5111e75504cc4;p=sw%2Fmotorsim Updated main func to use showAsWindow --- diff --git a/src/com/billkuker/rocketry/motorsim/motors/kuker/PVC9.java b/src/com/billkuker/rocketry/motorsim/motors/kuker/PVC9.java index ed038e9..b2b085e 100644 --- a/src/com/billkuker/rocketry/motorsim/motors/kuker/PVC9.java +++ b/src/com/billkuker/rocketry/motorsim/motors/kuker/PVC9.java @@ -46,6 +46,6 @@ public class PVC9 extends Motor { public static void main(String args[]) throws Exception{ PVC9 m = new PVC9(); Burn b = new Burn(m); - new BurnPanel(b).show(); + new BurnPanel(b).showAsWindow(); } } diff --git a/src/com/billkuker/rocketry/motorsim/motors/nakka/KappaSB.java b/src/com/billkuker/rocketry/motorsim/motors/nakka/KappaSB.java index 98c1211..f39c507 100644 --- a/src/com/billkuker/rocketry/motorsim/motors/nakka/KappaSB.java +++ b/src/com/billkuker/rocketry/motorsim/motors/nakka/KappaSB.java @@ -46,7 +46,7 @@ public class KappaSB extends Motor{ public static void main(String args[]) throws Exception{ KappaSB m = new KappaSB(); Burn b = new Burn(m); - new BurnPanel(b).show(); + new BurnPanel(b).showAsWindow(); } }