diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-22 20:38:27 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-22 20:38:27 +0000 |
commit | ec06e1186d0dc1b5bcac6a0d73c5d51e8a4682df (patch) | |
tree | 02de96ff9e65a8d13e1d9f18579d313cf2604586 /fxjs/xfa/cjx_field.cpp | |
parent | 6221f22c79a532f7dd422cc51afb91cb35bc349d (diff) | |
download | pdfium-ec06e1186d0dc1b5bcac6a0d73c5d51e8a4682df.tar.xz |
Change GetContainerWidgetAcc to GetContainerNode
This Cl converts the code which retrieved the containers WidgetAcc to
retrieve the container itself and then get the WidgetAcc from the
container.
Change-Id: Ib279a150500d1204e3d18f11f6a638c1f6c368ec
Reviewed-on: https://pdfium-review.googlesource.com/23350
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs/xfa/cjx_field.cpp')
-rw-r--r-- | fxjs/xfa/cjx_field.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/fxjs/xfa/cjx_field.cpp b/fxjs/xfa/cjx_field.cpp index 828bfb9a0d..e1e3881aa1 100644 --- a/fxjs/xfa/cjx_field.cpp +++ b/fxjs/xfa/cjx_field.cpp @@ -261,10 +261,12 @@ void CJX_Field::defaultValue(CFXJSE_Value* pValue, wsNewText, pWidgetAcc->GetLeadDigits(), pWidgetAcc->GetFracDigits()); } - CXFA_WidgetAcc* pContainerWidgetAcc = xfaNode->GetContainerWidgetAcc(); + CXFA_Node* pContainerNode = xfaNode->GetContainerNode(); WideString wsFormatText(wsNewText); - if (pContainerWidgetAcc) - wsFormatText = pContainerWidgetAcc->GetFormatDataValue(wsNewText); + if (pContainerNode && pContainerNode->GetWidgetAcc()) { + wsFormatText = + pContainerNode->GetWidgetAcc()->GetFormatDataValue(wsNewText); + } SetContent(wsNewText, wsFormatText, true, true, true); return; |