diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-12-14 21:14:14 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-12-14 21:14:14 +0000 |
commit | 9a2c6552460c82417de13e86f07e23dc8c8cef74 (patch) | |
tree | 9b1971968c9d371b226457090ab0f73efe45bca4 /xfa/fxfa/cxfa_ffcheckbutton.cpp | |
parent | 8eb2722e764fff0a39d0d1dc0c59473aa938b31f (diff) | |
download | pdfium-9a2c6552460c82417de13e86f07e23dc8c8cef74.tar.xz |
Fold CXFA_ParaData into CXFA_Para
This CL removes the CXFA_ParaData wrapper and folds the code into
CXFA_Para.
Change-Id: I86d139f1df48dcc80d28c7516b1bda95a59e94bd
Reviewed-on: https://pdfium-review.googlesource.com/21270
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffcheckbutton.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_ffcheckbutton.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/xfa/fxfa/cxfa_ffcheckbutton.cpp b/xfa/fxfa/cxfa_ffcheckbutton.cpp index c3ac7f6cd7..8dc2882504 100644 --- a/xfa/fxfa/cxfa_ffcheckbutton.cpp +++ b/xfa/fxfa/cxfa_ffcheckbutton.cpp @@ -19,6 +19,7 @@ #include "xfa/fxfa/cxfa_fffield.h" #include "xfa/fxfa/cxfa_ffpageview.h" #include "xfa/fxfa/cxfa_ffwidget.h" +#include "xfa/fxfa/parser/cxfa_para.h" CXFA_FFCheckButton::CXFA_FFCheckButton(CXFA_WidgetAcc* pDataAcc) : CXFA_FFField(pDataAcc), m_pOldDelegate(nullptr) {} @@ -112,10 +113,10 @@ bool CXFA_FFCheckButton::PerformLayout() { XFA_AttributeEnum iHorzAlign = XFA_AttributeEnum::Left; XFA_AttributeEnum iVertAlign = XFA_AttributeEnum::Top; - CXFA_ParaData paraData = m_pDataAcc->GetParaData(); - if (paraData.HasValidNode()) { - iHorzAlign = paraData.GetHorizontalAlign(); - iVertAlign = paraData.GetVerticalAlign(); + CXFA_Para* para = m_pDataAcc->GetPara(); + if (para) { + iHorzAlign = para->GetHorizontalAlign(); + iVertAlign = para->GetVerticalAlign(); } m_rtUI = rtWidget; |