diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-24 13:29:49 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-24 13:29:49 +0000 |
commit | f79f45d25af89a1be487a509f6c689fd303189aa (patch) | |
tree | 1848f69d262710b8c4deccc525c09e5f18c50557 /sw/source/ui/vba | |
parent | 1df75f9f00e1b69beadd1d5d1d67e21d0c66e20f (diff) |
cppcheck: prefer prefix variant
Diffstat (limited to 'sw/source/ui/vba')
-rw-r--r-- | sw/source/ui/vba/vbarevisions.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbarevisions.cxx b/sw/source/ui/vba/vbarevisions.cxx index 5833deaedd..4fe40e4316 100644 --- a/sw/source/ui/vba/vbarevisions.cxx +++ b/sw/source/ui/vba/vbarevisions.cxx @@ -157,7 +157,7 @@ void SAL_CALL SwVbaRevisions::AcceptAll( ) throw (css::uno::RuntimeException) } std::vector< uno::Reference< word::XRevision > >::iterator it = aRevisions.begin(); - for( ; it != aRevisions.end(); it++ ) + for( ; it != aRevisions.end(); ++it ) { uno::Reference< word::XRevision > xRevision( *it ); xRevision->Accept(); |