diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-04-01 20:21:48 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-04-01 20:22:02 +0200 |
commit | 25e5d697bca38e4ac8aa6a7a9030ffbf36682cac (patch) | |
tree | 03c48787557cd290deba5a8ab09083e6d247062c /vcl | |
parent | 85a499d50fe17ff19b43f5a69b9c809ace18401e (diff) |
Prefer prefix ++/-- operators for non-primitive types
Change-Id: If5950affaff1537362b1e5c2e3791d04c5371306
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/pngwrite.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/pngwrite.cxx b/vcl/source/gdi/pngwrite.cxx index 8d9a9929ba56..fcd4211c9675 100644 --- a/vcl/source/gdi/pngwrite.cxx +++ b/vcl/source/gdi/pngwrite.cxx @@ -258,7 +258,7 @@ sal_Bool PNGWriterImpl::Write( SvStream& rOStm ) if ( nDataSize ) rOStm.Write( &aBeg->aData[ 0 ], nDataSize ); rOStm << nCRC; - aBeg++; + ++aBeg; } rOStm.SetNumberFormatInt( nOldMode ); return mbStatus; |