summaryrefslogtreecommitdiffstats
path: root/vcl
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-04-01 20:21:48 +0200
committerJulien Nabet <serval2412@yahoo.fr>2013-04-01 20:22:02 +0200
commit25e5d697bca38e4ac8aa6a7a9030ffbf36682cac (patch)
tree03c48787557cd290deba5a8ab09083e6d247062c /vcl
parentPrefer prefix ++/-- operators for non-primitive types (diff)
downloadcore-25e5d697bca38e4ac8aa6a7a9030ffbf36682cac.tar.gz
core-25e5d697bca38e4ac8aa6a7a9030ffbf36682cac.zip
Prefer prefix ++/-- operators for non-primitive types
Change-Id: If5950affaff1537362b1e5c2e3791d04c5371306
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/pngwrite.cxx2
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;