Closedown

This commit is contained in:
2016-12-22 16:08:51 +01:00
parent 0ce74e48fc
commit 4a3dc75808

View File

@@ -123,7 +123,7 @@ public class Commands extends Panel {
private void btRockActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btRockActionPerformed
try {
getController().evalLineAsync("rock()");
getContext().evalLineAsync("rock()");
} catch (Exception ex) {
showException(ex);
}
@@ -131,7 +131,7 @@ public class Commands extends Panel {
private void btFbmActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btFbmActionPerformed
try {
getController().evalLineAsync("fbm()");
getContext().evalLineAsync("fbm()");
} catch (Exception ex) {
showException(ex);
}
@@ -139,7 +139,7 @@ public class Commands extends Panel {
private void btSeteActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btSeteActionPerformed
try {
getController().evalLineAsync("sete(" + String.valueOf(spEnergy.getValue()) + ")");
getContext().evalLineAsync("sete(" + String.valueOf(spEnergy.getValue()) + ")");
} catch (Exception ex) {
showException(ex);
}