Subversion Repository Public Repository

litesoft

Diff Revisions 954 vs 955 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/command/ShowDialogCommand.java

Diff revisions: vs.
  @@ -3,6 +3,7 @@
3 3
4 4 import org.litesoft.GWT.client.view.*;
5 5 import org.litesoft.core.*;
6 + import org.litesoft.commonfoundation.independence.*;
6 7 import org.litesoft.uispecification.*;
7 8
8 9 public class ShowDialogCommand extends CommandHandlerAdaptor {
  @@ -28,6 +29,6 @@
28 29
29 30 @Override
30 31 public void execute() {
31 - ClientContext.get().get( DialogViewShower.class ).showDialog( mViewDef, mParams );
32 + Instance.of( DialogViewShower.class ).showDialog( mViewDef, mParams );
32 33 }
33 34 }