diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-22 21:09:48 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-22 21:09:48 +0000 |
commit | 19991292768336013649c61dd56976d0698aa804 (patch) | |
tree | 5aeb7b6734b7627bd86ebe94086ef7d5b6640527 /xfa/fxfa/cxfa_ffpushbutton.cpp | |
parent | ec06e1186d0dc1b5bcac6a0d73c5d51e8a4682df (diff) | |
download | pdfium-19991292768336013649c61dd56976d0698aa804.tar.xz |
Convert CXFA_TextProvider to use a CXFA_Node
This CL changes CXFA_TextProvider to accept a CXFA_Node instead of a
CXFA_WidgetAcc. The internal uses were updated as needed.
Change-Id: Iaa9e4024371a3ae9521caf1444b298fb3710f829
Reviewed-on: https://pdfium-review.googlesource.com/23390
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffpushbutton.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_ffpushbutton.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/cxfa_ffpushbutton.cpp b/xfa/fxfa/cxfa_ffpushbutton.cpp index fdf7512d08..d4d591f87a 100644 --- a/xfa/fxfa/cxfa_ffpushbutton.cpp +++ b/xfa/fxfa/cxfa_ffpushbutton.cpp @@ -144,7 +144,7 @@ void CXFA_FFPushButton::LoadHighlightCaption() { if (m_pNode->GetWidgetAcc()->HasButtonRollover()) { if (!m_pRollProvider) { m_pRollProvider = pdfium::MakeUnique<CXFA_TextProvider>( - m_pNode->GetWidgetAcc(), XFA_TEXTPROVIDERTYPE_Rollover); + m_pNode.Get(), XFA_TEXTPROVIDERTYPE_Rollover); } m_pRolloverTextLayout = pdfium::MakeUnique<CXFA_TextLayout>(GetDoc(), m_pRollProvider.get()); @@ -153,7 +153,7 @@ void CXFA_FFPushButton::LoadHighlightCaption() { if (m_pNode->GetWidgetAcc()->HasButtonDown()) { if (!m_pDownProvider) { m_pDownProvider = pdfium::MakeUnique<CXFA_TextProvider>( - m_pNode->GetWidgetAcc(), XFA_TEXTPROVIDERTYPE_Down); + m_pNode.Get(), XFA_TEXTPROVIDERTYPE_Down); } m_pDownTextLayout = pdfium::MakeUnique<CXFA_TextLayout>(GetDoc(), m_pDownProvider.get()); |