summaryrefslogtreecommitdiff
path: root/xfa/fxfa/app/cxfa_eventparam.cpp
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-03-23 09:13:37 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-03-23 13:37:42 +0000
commit1bbedec89cc59df3e305dc25082d9699237d70ab (patch)
tree914e592d93139bf3e2d5057d7d70292cc39b66a9 /xfa/fxfa/app/cxfa_eventparam.cpp
parente3978d0bf4283f6a8b39c2e7a4f980ac92631280 (diff)
downloadpdfium-1bbedec89cc59df3e305dc25082d9699237d70ab.tar.xz
Remove unused XFA_VALIDATE code
The XFA Validation flag is always set to preSubmit. This Cl removes the flag and other values and just uses the preSubmit option. Change-Id: Ic2e88d72ad94b605a2da355c4c0a56def47df73e Reviewed-on: https://pdfium-review.googlesource.com/3153 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Nicolás Peña <npm@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/app/cxfa_eventparam.cpp')
-rw-r--r--xfa/fxfa/app/cxfa_eventparam.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/xfa/fxfa/app/cxfa_eventparam.cpp b/xfa/fxfa/app/cxfa_eventparam.cpp
index bcce7219bc..bd6742f4dd 100644
--- a/xfa/fxfa/app/cxfa_eventparam.cpp
+++ b/xfa/fxfa/app/cxfa_eventparam.cpp
@@ -19,8 +19,7 @@ CXFA_EventParam::CXFA_EventParam()
m_iSelEnd(0),
m_iSelStart(0),
m_bShift(false),
- m_bIsFormReady(false),
- m_iValidateActivities(XFA_VALIDATE_preSubmit) {}
+ m_bIsFormReady(false) {}
CXFA_EventParam::~CXFA_EventParam() {}
@@ -44,5 +43,4 @@ void CXFA_EventParam::Reset() {
m_wsSoapFaultCode.clear();
m_wsSoapFaultString.clear();
m_bIsFormReady = false;
- m_iValidateActivities = XFA_VALIDATE_preSubmit;
}