summaryrefslogtreecommitdiff
path: root/vcl/headless
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-02-01 18:19:32 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-02-02 15:06:50 +0000
commit4cbd8e7bf3e69cfda3d84e86f1adedac636a055e (patch)
tree6b9c34dd7da0dfc67e877ecaece9bbe8f232c824 /vcl/headless
parent5a8ec16bf5b51af826ed98644021cd2290747f6f (diff)
windows impl doesn't care if drawPolyLine LineWidth y != x
so I don't see that it makes much of a difference then if the quartz or cairo one's don't either Change-Id: Iabd65d617437aa747b910fcd2e84421413ed7db6
Diffstat (limited to 'vcl/headless')
-rw-r--r--vcl/headless/svpgdi.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index 24220b77408b..fb7a0695af2d 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -690,13 +690,6 @@ bool SvpSalGraphics::drawPolyLine(
return true;
}
- // reject requests that cannot be handled yet
- if (rLineWidths.getX() != rLineWidths.getY())
- {
- SAL_WARN("vcl.gdi", "unsupported SvpSalGraphics::drawPolyLine case");
- return false;
- }
-
// #i104886# linejoin-mode and thus the above only applies to "fat" lines
bool bNoJoin = (basegfx::B2DLineJoin::NONE == eLineJoin && rLineWidths.getX() > 1.3);