summaryrefslogtreecommitdiff
path: root/vcl/headless/svpgdi.cxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-02-08 19:34:35 +0100
committerJulien Nabet <serval2412@yahoo.fr>2020-02-08 22:53:32 +0100
commitd8cd2dd3bc3042a000af6b2739dc723fc9827f84 (patch)
treee9d3d6f517301d508f78729b126fe00e191c1ed9 /vcl/headless/svpgdi.cxx
parent2d0944ab7a94ea0d5cd5f66c4895a0c99d9a3593 (diff)
Fix typo
Change-Id: Ic8a30a09566ff192b7639a5b390b64c9187fc749 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88275 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/headless/svpgdi.cxx')
-rw-r--r--vcl/headless/svpgdi.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index b015006e646e..b47f1a9072a5 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -1322,10 +1322,10 @@ bool SvpSalGraphics::drawPolyLine(
const double fDotDashLength(nullptr != pStroke ? std::accumulate(pStroke->begin(), pStroke->end(), 0.0) : 0.0);
const bool bStrokeUsed(0.0 != fDotDashLength);
- // MM01 decide if to stroke direcly
+ // MM01 decide if to stroke directly
static bool bDoDirectCairoStroke(true);
- // MM01 activate to stroke direcly
+ // MM01 activate to stroke directly
if(bDoDirectCairoStroke && bStrokeUsed)
{
cairo_set_dash(cr, pStroke->data(), pStroke->size(), 0.0);