Subversion Repository Public Repository

litesoft

Diff Revisions 969 vs 970 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/foundation/client/support/ExceptionDialogBasedSystemErrorReporter.java

Diff revisions: vs.
  @@ -1,6 +1,6 @@
1 1 package com.temp.foundation.client.support;
2 2
3 - import org.litesoft.externalization.shared.*;
3 + import org.litesoft.commonfoundation.base.*;
4 4
5 5 import com.temp.foundation.client.handler.*;
6 6 import com.temp.foundation.client.widget.dialog.*;
  @@ -24,13 +24,13 @@
24 24
25 25 public static final String ERROR_PERSISTS_CONTACT_TEXT = "If the error persists, please open a Contact Us.";
26 26
27 - private final E13nSubstitutionData sd;
27 + private final KeyedTextValues sd;
28 28 private String currentDialogSource;
29 29 private ExceptionDialog currentDialog;
30 30
31 31 private Map<String, SourceIssues> pendingIssues = new LinkedHashMap<String, SourceIssues>();
32 32
33 - public ExceptionDialogBasedSystemErrorReporter( E13nSubstitutionData sd ) {
33 + public ExceptionDialogBasedSystemErrorReporter( KeyedTextValues sd ) {
34 34 this.sd = sd;
35 35 }
36 36