src/brydz/BrydzMIDlet.java
@@ -8,6 +8,7 @@ public class BrydzMIDlet extends javax.microedition.midlet.MIDlet { protected BrydzForm form = null; protected Display display = null; protected String version = null; public void startApp() { if(this.form == null) { @@ -16,10 +17,14 @@ if(this.display == null) { this.display = Display.getDisplay(this); } if(this.version == null) { this.version = this.getAppProperty("MIDlet-Version"); } this.display.setCurrent(this.form); } public void pauseApp() { this.form = null; this.notifyPaused(); }