diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:08:49 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:08:49 +0000 |
commit | cf30ffaa88d00a08e2ca8f51bca975717b561430 (patch) | |
tree | 7dc13b7e6b3219d2eb700553b45fa5469a95d584 /sot | |
parent | d90fef45cd1a8f15c54debd0542b1ec250ad57aa (diff) |
cppunit: prefer prefix variant
Diffstat (limited to 'sot')
-rw-r--r-- | sot/source/sdstor/ucbstorage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx index bf374ba55279..dfc0ab9ad12a 100644 --- a/sot/source/sdstor/ucbstorage.cxx +++ b/sot/source/sdstor/ucbstorage.cxx @@ -2220,7 +2220,7 @@ UCBStorage_Impl::~UCBStorage_Impl() if ( m_pUNOStorageHolderList ) { for ( UNOStorageHolderList::iterator aIter = m_pUNOStorageHolderList->begin(); - aIter != m_pUNOStorageHolderList->end(); aIter++ ) + aIter != m_pUNOStorageHolderList->end(); ++aIter ) if ( *aIter ) { (*aIter)->InternalDispose(); |