diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-21 22:03:20 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-21 22:03:20 +0000 |
commit | 559f974dbb92e35a1bfb739032d82a2536fcf59c (patch) | |
tree | f9b90f5029a28138377272195392aaab659250b1 /xfa/fxfa/cxfa_ffwidget.h | |
parent | 307dfb406422f9589fcdb09039b4c31a9c5f6269 (diff) | |
download | pdfium-559f974dbb92e35a1bfb739032d82a2536fcf59c.tar.xz |
Cleanup CXFA_StrokeData
This CL fixes return types and makes methods consts.
Change-Id: I97da09a491d10760d6adf4efcc0557130cf8b405
Reviewed-on: https://pdfium-review.googlesource.com/19110
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffwidget.h')
-rw-r--r-- | xfa/fxfa/cxfa_ffwidget.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xfa/fxfa/cxfa_ffwidget.h b/xfa/fxfa/cxfa_ffwidget.h index 5729654a2b..4e9863cb5c 100644 --- a/xfa/fxfa/cxfa_ffwidget.h +++ b/xfa/fxfa/cxfa_ffwidget.h @@ -35,9 +35,8 @@ enum XFA_WIDGETITEM { }; int32_t XFA_StrokeTypeSetLineDash(CXFA_Graphics* pGraphics, - int32_t iStrokeType, - int32_t iCapType); -CFX_GraphStateData::LineCap XFA_LineCapToFXGE(int32_t iLineCap); + XFA_ATTRIBUTEENUM iStrokeType, + XFA_ATTRIBUTEENUM iCapType); void XFA_DrawImage(CXFA_Graphics* pGS, const CFX_RectF& rtImage, const CFX_Matrix& matrix, |