summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-24 13:36:52 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-24 13:36:52 +0000
commit05e37196ca512e1d5583585abdb870bf4acc10a6 (patch)
tree25137fb27c6b587f0922e0a4ea0123d53611fdfa /unotools
parent66bbdbe5162165ca46a38eb539b12a7edc9d19bc (diff)
cppcheck: prefer prefix variant
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/property/propertysetinfo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/property/propertysetinfo.cxx b/unotools/source/property/propertysetinfo.cxx
index a420ec3decd4..06feee364746 100644
--- a/unotools/source/property/propertysetinfo.cxx
+++ b/unotools/source/property/propertysetinfo.cxx
@@ -127,8 +127,8 @@ Sequence< Property > PropertyMapImpl::getProperties() throw()
pProperties->Handle = pEntry->mnWhich;
pProperties->Type = *pEntry->mpType;
pProperties->Attributes = pEntry->mnFlags;
- pProperties++;
- aIter++;
+ ++pProperties;
+ ++aIter;
}
}