diff options
author | Kayo Hamid <kayo.hamid@gekkolinux.com.br> | 2011-04-19 10:29:42 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-04-19 10:29:42 +0100 |
commit | 26c8682631d81151d1d81922a5aafde98081bfb6 (patch) | |
tree | ea6b89514e206f7016f97215f66f6a6834a2fa83 /comphelper/source/property | |
parent | 8af99e57686fb9ea4da1fcf890c7a7ce9e50c83f (diff) |
prefer prefix ++/-- operators
Diffstat (limited to 'comphelper/source/property')
-rw-r--r-- | comphelper/source/property/MasterPropertySet.cxx | 2 | ||||
-rw-r--r-- | comphelper/source/property/MasterPropertySetInfo.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/property/MasterPropertySet.cxx b/comphelper/source/property/MasterPropertySet.cxx index 2844031d370c..78f33af7aed0 100644 --- a/comphelper/source/property/MasterPropertySet.cxx +++ b/comphelper/source/property/MasterPropertySet.cxx @@ -108,7 +108,7 @@ MasterPropertySet::~MasterPropertySet() while (aIter != aEnd ) { delete (*aIter).second; - aIter++; + ++aIter; } } diff --git a/comphelper/source/property/MasterPropertySetInfo.cxx b/comphelper/source/property/MasterPropertySetInfo.cxx index 0cfaf6ec1a6f..46dffe062c03 100644 --- a/comphelper/source/property/MasterPropertySetInfo.cxx +++ b/comphelper/source/property/MasterPropertySetInfo.cxx @@ -63,7 +63,7 @@ MasterPropertySetInfo::~MasterPropertySetInfo() while (aIter != aEnd ) { delete (*aIter).second; - aIter++; + ++aIter; } } |