From 7c3bd3cd8c9f3ee562ea158d7b380e5f7244fbb0 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 21 Jan 2017 15:03:16 +0000 Subject: coverity#1399017 Unchecked return value Change-Id: I67a8b8b5f63d3a44dc1df5c848da5797a6c20646 --- vcl/source/outdev/polyline.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl') 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 -- cgit