diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-22 22:08:57 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-22 22:08:57 +0000 |
commit | 7f2d01a2dc223aca5522efaeed0eba9fc145fc51 (patch) | |
tree | f643e741b145ce7e67a391cc8a40696a6a9298f8 /xfa/fxfa/cxfa_fflistbox.cpp | |
parent | 1ca42167e5913eddf57f137fd7b4cc2110b6cd1f (diff) | |
download | pdfium-7f2d01a2dc223aca5522efaeed0eba9fc145fc51.tar.xz |
Convert CXFA_EventParam to store a CXFA_Node
This CL changes the CXFA_EventParam code to store a CXFA_Node instead of
a CXFA_WidgetAcc.
Change-Id: I21510674b0b6435ca9b87bfbf97914f54e5e3464
Reviewed-on: https://pdfium-review.googlesource.com/23451
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_fflistbox.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_fflistbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/cxfa_fflistbox.cpp b/xfa/fxfa/cxfa_fflistbox.cpp index aec9ed6c26..12a2c8a8c9 100644 --- a/xfa/fxfa/cxfa_fflistbox.cpp +++ b/xfa/fxfa/cxfa_fflistbox.cpp @@ -152,7 +152,7 @@ bool CXFA_FFListBox::UpdateFWLData() { void CXFA_FFListBox::OnSelectChanged(CFWL_Widget* pWidget) { CXFA_EventParam eParam; eParam.m_eType = XFA_EVENT_Change; - eParam.m_pTarget = m_pNode->GetWidgetAcc(); + eParam.m_pTarget = m_pNode.Get(); eParam.m_wsPrevText = m_pNode->GetWidgetAcc()->GetValue(XFA_VALUEPICTURE_Raw); auto* pListBox = ToListBox(m_pNormalWidget.get()); |