summaryrefslogtreecommitdiff
path: root/fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp')
-rw-r--r--fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp b/fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp
index 3f9f3038fe..f3fe89c1e2 100644
--- a/fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp
+++ b/fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp
@@ -655,10 +655,8 @@ bool CPDFXFA_DocEnvironment::OnBeforeNotifySubmit() {
if (!pFormFillEnv)
return false;
- WideString ws = WideString::FromLocal(IDS_XFA_Validate_Input);
- ByteString bs = ws.UTF16LE_Encode();
- pFormFillEnv->Alert(AsFPDFWideString(&bs),
- reinterpret_cast<FPDF_WIDESTRING>(L""), 0, 1);
+ pFormFillEnv->JS_appAlert(WideString::FromLocal(IDS_XFA_Validate_Input),
+ L"", 0, 1);
return false;
}
pNode = it->MoveToNext();
@@ -910,10 +908,8 @@ bool CPDFXFA_DocEnvironment::SubmitInternal(CXFA_FFDoc* hDoc,
WideString csURL = submit->GetSubmitTarget();
if (csURL.IsEmpty()) {
- WideString ws = WideString::FromLocal("Submit cancelled.");
- ByteString bs = ws.UTF16LE_Encode();
- pFormFillEnv->Alert(AsFPDFWideString(&bs),
- reinterpret_cast<FPDF_WIDESTRING>(L""), 0, 4);
+ pFormFillEnv->JS_appAlert(WideString::FromLocal("Submit cancelled."), L"",
+ 0, 4);
return false;
}