diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-09 10:47:23 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-09 17:58:39 +0000 |
commit | ef55c79650768a731c22038acd36b2a741706ed6 (patch) | |
tree | 496a6f9a063e950006d43d91c774a2e364791a4a /xfa/fxfa/cxfa_fftextedit.cpp | |
parent | 95bb9748c9292d282e2425d4500f15f5c48c2b34 (diff) | |
download | pdfium-ef55c79650768a731c22038acd36b2a741706ed6.tar.xz |
Move barcode code from WidgetAcc to Node
This CL moves the barcode related code from CXFA_WidgetAcc to CXFA_Node.
Change-Id: Id3f5f30222535a69a0bf4d59416e57d452c7d8e8
Reviewed-on: https://pdfium-review.googlesource.com/22551
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_fftextedit.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_fftextedit.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/xfa/fxfa/cxfa_fftextedit.cpp b/xfa/fxfa/cxfa_fftextedit.cpp index 8f84b185ca..706a9a84cf 100644 --- a/xfa/fxfa/cxfa_fftextedit.cpp +++ b/xfa/fxfa/cxfa_fftextedit.cpp @@ -273,10 +273,8 @@ bool CXFA_FFTextEdit::UpdateFWLData() { } } else if (m_pNode->GetWidgetAcc()->GetUIType() == XFA_Element::Barcode) { int32_t nDataLen = 0; - if (eType == XFA_VALUEPICTURE_Edit) { - nDataLen = - m_pNode->GetWidgetAcc()->GetBarcodeAttribute_DataLength().value_or(0); - } + if (eType == XFA_VALUEPICTURE_Edit) + nDataLen = m_pNode->GetBarcodeAttribute_DataLength().value_or(0); pEdit->SetLimit(nDataLen); bUpdate = true; |