diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-22 16:04:08 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-22 16:04:36 +0200 |
commit | c17ead7dc9c9dce23033fdda9c316f27a0225b17 (patch) | |
tree | 3f04f0c1f6d64c97bee08a4658080da93d908ee1 /sw/source/uibase/utlui | |
parent | 816afdb7c717c324fa4ea98df93b47b093e39d71 (diff) |
loplugin:commaoperator in sw/
Change-Id: I9b00755707687e4c10c02bf49866571f2c44d8ba
Diffstat (limited to 'sw/source/uibase/utlui')
-rw-r--r-- | sw/source/uibase/utlui/shdwcrsr.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/uibase/utlui/shdwcrsr.cxx b/sw/source/uibase/utlui/shdwcrsr.cxx index a67eaa8e037f..5be560b490c5 100644 --- a/sw/source/uibase/utlui/shdwcrsr.cxx +++ b/sw/source/uibase/utlui/shdwcrsr.cxx @@ -61,7 +61,8 @@ void SwShadowCursor::DrawTri( const Point& rPt, long nHeight, bool bLeft ) while( aPt1.Y() <= aPt2.Y() ) { pWin->DrawLine( aPt1, aPt2 ); - aPt1.Y()++, aPt2.Y()--; + aPt1.Y()++; + aPt2.Y()--; aPt2.X() = aPt1.X() += nDiff; } } |