vcl/headless/svpgdi.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 2f91acc6eab246179a35d957d876d78a3e5e327f Author: Andras Timar <[email protected]> AuthorDate: Mon Jan 6 17:02:28 2020 +0100 Commit: Andras Timar <[email protected]> CommitDate: Mon Jan 6 17:02:28 2020 +0100 fix backport Change-Id: I75c9f5bf788fcadb9eb69a0e7e58d32779fc46a2 diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx index 598d4e7d94bf..a49080c18249 100644 --- a/vcl/headless/svpgdi.cxx +++ b/vcl/headless/svpgdi.cxx @@ -682,7 +682,7 @@ void SvpSalGraphics::drawPixel( long nX, long nY, SalColor nSalColor ) clipRegion(cr); cairo_rectangle(cr, nX, nY, 1, 1); - applyColor(cr, aColor, 0.0); + applyColor(cr, nSalColor); cairo_fill(cr); basegfx::B2DRange extents = getClippedFillDamage(cr); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
