summaryrefslogtreecommitdiff
path: root/fpdfsdk/formfiller/cffl_pushbutton.cpp
diff options
context:
space:
mode:
authorjaepark <jaepark@google.com>2016-09-01 14:39:24 -0700
committerCommit bot <commit-bot@chromium.org>2016-09-01 14:39:24 -0700
commit4bae296c1eee7a1ecae8bab3d59dd9430218f730 (patch)
tree159d3dba32294d424892e7d8f6334e6cb37e4654 /fpdfsdk/formfiller/cffl_pushbutton.cpp
parente0cb687c71d555b55cc30ec59c9b338a0e83f77f (diff)
downloadpdfium-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/formfiller/cffl_pushbutton.cpp')
-rw-r--r--fpdfsdk/formfiller/cffl_pushbutton.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/fpdfsdk/formfiller/cffl_pushbutton.cpp b/fpdfsdk/formfiller/cffl_pushbutton.cpp
index 001560836f..d8da65a383 100644
--- a/fpdfsdk/formfiller/cffl_pushbutton.cpp
+++ b/fpdfsdk/formfiller/cffl_pushbutton.cpp
@@ -32,7 +32,6 @@ FX_BOOL CFFL_PushButton::OnChar(CPDFSDK_Annot* pAnnot,
void CFFL_PushButton::OnDraw(CPDFSDK_PageView* pPageView,
CPDFSDK_Annot* pAnnot,
CFX_RenderDevice* pDevice,
- CFX_Matrix* pUser2Device,
- uint32_t dwFlags) {
- CFFL_Button::OnDraw(pPageView, pAnnot, pDevice, pUser2Device, dwFlags);
+ CFX_Matrix* pUser2Device) {
+ CFFL_Button::OnDraw(pPageView, pAnnot, pDevice, pUser2Device);
}