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 /fxjs | |
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 'fxjs')
-rw-r--r-- | fxjs/xfa/cjx_eventpseudomodel.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fxjs/xfa/cjx_eventpseudomodel.cpp b/fxjs/xfa/cjx_eventpseudomodel.cpp index b021689990..b12e82eaf4 100644 --- a/fxjs/xfa/cjx_eventpseudomodel.cpp +++ b/fxjs/xfa/cjx_eventpseudomodel.cpp @@ -170,9 +170,7 @@ CJS_Return CJX_EventPseudoModel::emit( if (!pWidgetHandler) return CJS_Return(true); - CXFA_Node* pNode = - pEventParam->m_pTarget ? pEventParam->m_pTarget->GetNode() : nullptr; - pWidgetHandler->ProcessEvent(pNode, pEventParam); + pWidgetHandler->ProcessEvent(pEventParam->m_pTarget, pEventParam); return CJS_Return(true); } |