summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-04-06 14:22:55 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-04-06 13:03:06 +0000
commit6768a9b602c5cd6b4702faf862cac60527bded99 (patch)
treefa7048ac03cd0c9bd00949e2ce236980ccaf3efd /starmath
parentad16351d9d8fd440bb8941c453b802ad5c109b23 (diff)
loplugin:redundantcast check for c-style casts to void
Change-Id: Ic8b99f590436f94825e471bc61411c69fd768862 Reviewed-on: https://gerrit.libreoffice.org/36208 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/qa/cppunit/test_node.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/starmath/qa/cppunit/test_node.cxx b/starmath/qa/cppunit/test_node.cxx
index 3a450b5329f5..e36b8100f682 100644
--- a/starmath/qa/cppunit/test_node.cxx
+++ b/starmath/qa/cppunit/test_node.cxx
@@ -71,10 +71,10 @@ void NodeTest::testTdf47813()
#undef MATRIX
ScopedVclPtrInstance<VirtualDevice> pOutputDevice;
SmFormat aFmt;
- (void)pNodeA->Arrange(*pOutputDevice, aFmt);
- (void)pNodeC->Arrange(*pOutputDevice, aFmt);
- (void)pNodeL->Arrange(*pOutputDevice, aFmt);
- (void)pNodeR->Arrange(*pOutputDevice, aFmt);
+ pNodeA->Arrange(*pOutputDevice, aFmt);
+ pNodeC->Arrange(*pOutputDevice, aFmt);
+ pNodeL->Arrange(*pOutputDevice, aFmt);
+ pNodeR->Arrange(*pOutputDevice, aFmt);
long nWidthA = pNodeA->GetRect().GetWidth();
long nWidthC = pNodeC->GetRect().GetWidth();
long nWidthL = pNodeL->GetRect().GetWidth();