diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-03-29 23:55:24 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-03-29 23:56:31 +0200 |
commit | e511a7d6390cdc0a24a33c2870a9d6bf6522267a (patch) | |
tree | cc6b1f062ef3954e55eacf7ccf1f5e0d8731f978 /chart2/source/view/axes/VCartesianGrid.cxx | |
parent | 7c9e637bdebbc3688f3d321048f77b480b58dc24 (diff) |
Fixes a bunch of "Prefer prefix ++/-- operators for non-primitive types"
Diffstat (limited to 'chart2/source/view/axes/VCartesianGrid.cxx')
-rw-r--r-- | chart2/source/view/axes/VCartesianGrid.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/view/axes/VCartesianGrid.cxx b/chart2/source/view/axes/VCartesianGrid.cxx index 362459dd85cd..fb1f05d2acec 100644 --- a/chart2/source/view/axes/VCartesianGrid.cxx +++ b/chart2/source/view/axes/VCartesianGrid.cxx @@ -246,7 +246,7 @@ void VCartesianGrid::createShapes() sal_Int32 nLinePropertiesCount = aLinePropertiesList.size(); for( sal_Int32 nDepth=0 ; aDepthIter != aDepthEnd && nDepth < nLinePropertiesCount - ; aDepthIter++, nDepth++ ) + ; ++aDepthIter, nDepth++ ) { if( !aLinePropertiesList[nDepth].isLineVisible() ) continue; |