Subversion Repository Public Repository

litesoft

Diff Revisions 141 vs 154 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/view/UiView.java

Diff revisions: vs.
  @@ -16,8 +16,8 @@
16 16 import org.litesoft.logger.*;
17 17 import org.litesoft.uispecification.*;
18 18
19 + import com.google.gwt.core.client.*;
19 20 import com.google.gwt.event.dom.client.*;
20 - import com.google.gwt.user.client.*;
21 21 import com.google.gwt.user.client.ui.*;
22 22
23 23 public abstract class UiView
  @@ -150,7 +150,7 @@
150 150
151 151 protected final void backTo( ViewDef pViewDef, String pError )
152 152 {
153 - DeferredCommand.addCommand( new ShowScreenCommand( pViewDef, pError ) );
153 + Scheduler.get().scheduleDeferred( new ShowScreenCommand( pViewDef, pError ) );
154 154 }
155 155
156 156 public StatusMessageSinc getStatusMessageSinc()