summaryrefslogtreecommitdiff
path: root/xfa/fxfa
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2017-04-18 11:45:36 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-04-18 19:19:22 +0000
commit1d52d1e5fb0b14782dd6b97eeee8c90106839452 (patch)
tree66f794d6559c0bd2ddd4dab2272ceabf01426fdc /xfa/fxfa
parenta77572303624a9ba9877f432bcb6ee2a16b9b34e (diff)
downloadpdfium-1d52d1e5fb0b14782dd6b97eeee8c90106839452.tar.xz
Use unique_ptr in CFWL_NoteDriver::m_eventTargets map
Invert CFWL_EventTarget::m_bInvalid for the sake of positive logic. Change-Id: I9ccc512ab2ff553e1033698f36bf3a297c4ee7c9 Reviewed-on: https://pdfium-review.googlesource.com/4251 Commit-Queue: dsinclair <dsinclair@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa')
-rw-r--r--xfa/fxfa/cxfa_ffapp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/cxfa_ffapp.cpp b/xfa/fxfa/cxfa_ffapp.cpp
index c02fd30e86..a71112c93e 100644
--- a/xfa/fxfa/cxfa_ffapp.cpp
+++ b/xfa/fxfa/cxfa_ffapp.cpp
@@ -92,5 +92,5 @@ IFWL_AdapterTimerMgr* CXFA_FFApp::GetTimerMgr() const {
}
void CXFA_FFApp::ClearEventTargets() {
- m_pFWLApp->GetNoteDriver()->ClearEventTargets(false);
+ m_pFWLApp->GetNoteDriver()->ClearEventTargets();
}