diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-07-02 16:44:02 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-02 16:44:02 +0000 |
commit | e353d72449a9298410dc479bf27410d83e56b215 (patch) | |
tree | 814ace49b09aeb0ba440550b1b29fbe4af8b6ea6 /xfa/fwl/cfwl_edit.cpp | |
parent | 09646f2d0497eb4cdcf2f3843585faa9264196f4 (diff) | |
download | pdfium-e353d72449a9298410dc479bf27410d83e56b215.tar.xz |
Use UnownedPtr<> in cfwl_event.h and cfwl_message.h
Change-Id: I1981eb23006db203e845e954a7847cfa992d5e03
Reviewed-on: https://pdfium-review.googlesource.com/36710
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fwl/cfwl_edit.cpp')
-rw-r--r-- | xfa/fwl/cfwl_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fwl/cfwl_edit.cpp b/xfa/fwl/cfwl_edit.cpp index 623cf4e956..fc6ce094ea 100644 --- a/xfa/fwl/cfwl_edit.cpp +++ b/xfa/fwl/cfwl_edit.cpp @@ -1068,7 +1068,7 @@ void CFWL_Edit::OnProcessEvent(CFWL_Event* pEvent) { if (!pEvent || pEvent->GetType() != CFWL_Event::Type::Scroll) return; - CFWL_Widget* pSrcTarget = pEvent->m_pSrcTarget; + CFWL_Widget* pSrcTarget = pEvent->GetSrcTarget(); if ((pSrcTarget == m_pVertScrollBar.get() && m_pVertScrollBar) || (pSrcTarget == m_pHorzScrollBar.get() && m_pHorzScrollBar)) { CFWL_EventScroll* pScrollEvent = static_cast<CFWL_EventScroll*>(pEvent); |