summaryrefslogtreecommitdiff
path: root/xfa/fxfa/cxfa_ffline.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2017-08-16 19:35:12 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-08-17 18:29:54 +0000
commit86224fc1f74a27c3448961c91e10d4e3feb427e4 (patch)
treef759d9a24e26ddbf54eaa3b62eedc7c35a46190f /xfa/fxfa/cxfa_ffline.cpp
parent9342b33ec0e2b43c0ee0b94bb70f2e981c263877 (diff)
downloadpdfium-86224fc1f74a27c3448961c91e10d4e3feb427e4.tar.xz
Remove default argument for CXFA_Graphics::SetLineWidth().
Change-Id: I6ea062bf5def0bc5fea7c52323198209dcf4c3e9 Reviewed-on: https://pdfium-review.googlesource.com/11110 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffline.cpp')
-rw-r--r--xfa/fxfa/cxfa_ffline.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fxfa/cxfa_ffline.cpp b/xfa/fxfa/cxfa_ffline.cpp
index 130ce9b28b..4353e684a4 100644
--- a/xfa/fxfa/cxfa_ffline.cpp
+++ b/xfa/fxfa/cxfa_ffline.cpp
@@ -89,7 +89,8 @@ void CXFA_FFLine::RenderWidget(CXFA_Graphics* pGS,
linePath.AddLine(rtLine.TopLeft(), rtLine.BottomRight());
pGS->SaveGraphState();
- pGS->SetLineWidth(fLineWidth, true);
+ pGS->SetLineWidth(fLineWidth);
+ pGS->EnableActOnDash();
XFA_StrokeTypeSetLineDash(pGS, iStrokeType, iCap);
pGS->SetStrokeColor(CXFA_Color(lineColor));
pGS->SetLineCap(XFA_LineCapToFXGE(iCap));