summaryrefslogtreecommitdiff
path: root/xfa/fxfa/cxfa_eventparam.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2018-01-22 22:08:57 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-01-22 22:08:57 +0000
commit7f2d01a2dc223aca5522efaeed0eba9fc145fc51 (patch)
treef643e741b145ce7e67a391cc8a40696a6a9298f8 /xfa/fxfa/cxfa_eventparam.h
parent1ca42167e5913eddf57f137fd7b4cc2110b6cd1f (diff)
downloadpdfium-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_eventparam.h')
-rw-r--r--xfa/fxfa/cxfa_eventparam.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/cxfa_eventparam.h b/xfa/fxfa/cxfa_eventparam.h
index eafd76c6af..210eeb515a 100644
--- a/xfa/fxfa/cxfa_eventparam.h
+++ b/xfa/fxfa/cxfa_eventparam.h
@@ -9,7 +9,7 @@
#include "xfa/fxfa/fxfa_basic.h"
-class CXFA_WidgetAcc;
+class CXFA_Node;
enum XFA_EVENTTYPE {
XFA_EVENT_Click,
@@ -53,7 +53,7 @@ class CXFA_EventParam {
void Reset();
- CXFA_WidgetAcc* m_pTarget;
+ CXFA_Node* m_pTarget;
XFA_EVENTTYPE m_eType;
WideString m_wsResult;
bool m_bCancelAction;