summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-21 15:03:16 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-21 17:05:27 +0000
commit7c3bd3cd8c9f3ee562ea158d7b380e5f7244fbb0 (patch)
tree7bb7697e66ec2b5c791aeafa6260806cd11c129a /vcl
parentbda662488c3aaf93002594adbb833cb7d3c3d83e (diff)
coverity#1399017 Unchecked return value
Change-Id: I67a8b8b5f63d3a44dc1df5c848da5797a6c20646
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/outdev/polyline.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/outdev/polyline.cxx b/vcl/source/outdev/polyline.cxx
index c69621b9ae37..8788afd37c61 100644
--- a/vcl/source/outdev/polyline.cxx
+++ b/vcl/source/outdev/polyline.cxx
@@ -221,7 +221,7 @@ void OutputDevice::DrawPolyLine( const basegfx::B2DPolygon& rB2DPolygon,
// to avoid optical gaps
for(sal_uInt32 a(0); a < aAreaPolyPolygon.count(); a++)
{
- DrawPolyLineDirect( aAreaPolyPolygon.getB2DPolygon(a), 0.0, 0.0, basegfx::B2DLineJoin::NONE, css::drawing::LineCap_BUTT, 15.0 * F_PI180 /*default, not used*/, bTryAA);
+ (void)DrawPolyLineDirect( aAreaPolyPolygon.getB2DPolygon(a), 0.0, 0.0, basegfx::B2DLineJoin::NONE, css::drawing::LineCap_BUTT, 15.0 * F_PI180 /*default, not used*/, bTryAA);
}
}
else