diff options
author | jaepark <jaepark@google.com> | 2016-09-01 14:39:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-01 14:39:24 -0700 |
commit | 4bae296c1eee7a1ecae8bab3d59dd9430218f730 (patch) | |
tree | 159d3dba32294d424892e7d8f6334e6cb37e4654 /fpdfsdk/fsdk_mgr.cpp | |
parent | e0cb687c71d555b55cc30ec59c9b338a0e83f77f (diff) | |
download | pdfium-4bae296c1eee7a1ecae8bab3d59dd9430218f730.tar.xz |
Remove unused dwFlags parameter in CPDFSDK_AnnotHandlerMgr::OnDraw and its calls.
Review-Url: https://codereview.chromium.org/2305443005
Diffstat (limited to 'fpdfsdk/fsdk_mgr.cpp')
-rw-r--r-- | fpdfsdk/fsdk_mgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/fsdk_mgr.cpp b/fpdfsdk/fsdk_mgr.cpp index 4ca2e6cc50..0fc61dac7a 100644 --- a/fpdfsdk/fsdk_mgr.cpp +++ b/fpdfsdk/fsdk_mgr.cpp @@ -569,7 +569,7 @@ void CPDFSDK_PageView::PageView_OnDraw(CFX_RenderDevice* pDevice, CPDFSDK_AnnotIterator annotIterator(this, true); while (CPDFSDK_Annot* pSDKAnnot = annotIterator.Next()) { CPDFSDK_AnnotHandlerMgr* pAnnotHandlerMgr = pEnv->GetAnnotHandlerMgr(); - pAnnotHandlerMgr->Annot_OnDraw(this, pSDKAnnot, pDevice, pUser2Device, 0); + pAnnotHandlerMgr->Annot_OnDraw(this, pSDKAnnot, pDevice, pUser2Device); } } |