diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:17:24 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:47:38 +0000 |
commit | c1d1dcb62abe696b7f4aaa035eefe08ed11b9ca6 (patch) | |
tree | 6c171fc84f6c2229a538eed8ebb61bfe4ce553f0 /framework/source/uiconfiguration | |
parent | 358c04248f7399a2e91fb8945d4c9c79b8695202 (diff) |
cppunit: prefer prefix variant
Diffstat (limited to 'framework/source/uiconfiguration')
-rw-r--r-- | framework/source/uiconfiguration/imagemanagerimpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/uiconfiguration/imagemanagerimpl.cxx b/framework/source/uiconfiguration/imagemanagerimpl.cxx index f2d3e2f97ac2..ad9a9cba1bbf 100644 --- a/framework/source/uiconfiguration/imagemanagerimpl.cxx +++ b/framework/source/uiconfiguration/imagemanagerimpl.cxx @@ -888,7 +888,7 @@ throw (::com::sun::star::uno::RuntimeException) Sequence< OUString > aImageNameSeq( aImageCmdNameMap.size() ); ImageNameMap::const_iterator pIter; i = 0; - for ( pIter = aImageCmdNameMap.begin(); pIter != aImageCmdNameMap.end(); pIter++ ) + for ( pIter = aImageCmdNameMap.begin(); pIter != aImageCmdNameMap.end(); ++pIter ) aImageNameSeq[i++] = pIter->first; return aImageNameSeq; |