diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-05-31 14:43:00 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-05-31 14:58:05 +0100 |
commit | 93b415a68f6080b5cb88381637433ff29e64cf2d (patch) | |
tree | e2decae9c90236d104a89909e84c8780537d928f /comphelper | |
parent | dc0d009f10dee5d379b41abcd51d181dda38f1dd (diff) |
targetted prefer prefix operators reversion
Change-Id: I7e1ae9622bc89b584ddbb307dac15b0ed56ae563
Diffstat (limited to 'comphelper')
-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 c9517d5c3ef2..68f135cf2d0e 100644 --- a/comphelper/source/property/MasterPropertySet.cxx +++ b/comphelper/source/property/MasterPropertySet.cxx @@ -95,7 +95,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 df3e2995d02d..ec661d0ed505 100644 --- a/comphelper/source/property/MasterPropertySetInfo.cxx +++ b/comphelper/source/property/MasterPropertySetInfo.cxx @@ -56,7 +56,7 @@ MasterPropertySetInfo::~MasterPropertySetInfo() while (aIter != aEnd ) { delete (*aIter).second; - ++aIter; + aIter++; } } |