diff options
author | Lei Zhang <thestig@chromium.org> | 2018-08-20 19:10:17 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-20 19:10:17 +0000 |
commit | 9273e0674ecf87929696ca89cbf16371edabc315 (patch) | |
tree | 1b26f0c638a7252e8b1dfc961c6ec09d50fb546b /xfa/fxfa/parser | |
parent | f6144d4ab76e6357bd8d228ddf542ef4fb3fa3b0 (diff) | |
download | pdfium-9273e0674ecf87929696ca89cbf16371edabc315.tar.xz |
Clean up CXFA_Graphics::SetLineDash().
Fix some nits in CXFA_FFField as well.
Change-Id: I6d0d4569322a01192cdd4bf9d98325ff86642abe
Reviewed-on: https://pdfium-review.googlesource.com/40651
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser')
-rw-r--r-- | xfa/fxfa/parser/cxfa_stroke.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_stroke.cpp b/xfa/fxfa/parser/cxfa_stroke.cpp index 9d5916a8a3..a19dd3ce3b 100644 --- a/xfa/fxfa/parser/cxfa_stroke.cpp +++ b/xfa/fxfa/parser/cxfa_stroke.cpp @@ -26,7 +26,7 @@ void XFA_StrokeTypeSetLineDash(CXFA_Graphics* pGraphics, dashArray[1] = 2; dashArray[3] = 2; } - pGraphics->SetLineDash(0, dashArray, 4); + pGraphics->SetLineDash(0, dashArray, FX_ArraySize(dashArray)); break; } case XFA_AttributeEnum::DashDotDot: { @@ -36,7 +36,7 @@ void XFA_StrokeTypeSetLineDash(CXFA_Graphics* pGraphics, dashArray[3] = 2; dashArray[5] = 2; } - pGraphics->SetLineDash(0, dashArray, 6); + pGraphics->SetLineDash(0, dashArray, FX_ArraySize(dashArray)); break; } case XFA_AttributeEnum::Dashed: { @@ -44,7 +44,7 @@ void XFA_StrokeTypeSetLineDash(CXFA_Graphics* pGraphics, if (iCapType != XFA_AttributeEnum::Butt) dashArray[1] = 2; - pGraphics->SetLineDash(0, dashArray, 2); + pGraphics->SetLineDash(0, dashArray, FX_ArraySize(dashArray)); break; } case XFA_AttributeEnum::Dotted: { @@ -52,7 +52,7 @@ void XFA_StrokeTypeSetLineDash(CXFA_Graphics* pGraphics, if (iCapType != XFA_AttributeEnum::Butt) dashArray[1] = 2; - pGraphics->SetLineDash(0, dashArray, 2); + pGraphics->SetLineDash(0, dashArray, FX_ArraySize(dashArray)); break; } default: |