diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-23 15:09:11 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-23 15:09:11 +0000 |
commit | 7b573a113b31b8f136bf2fd1ab1ba8f12bf267ea (patch) | |
tree | 9f00a9fc9c93e8c3fdfb7b7aa1f388d78510d7ea | |
parent | fae5a36e37059b75f648f7b0e86e4cf1d26f613d (diff) |
cppcheck: prefer prefix variant
-rw-r--r-- | unotools/source/config/xmlaccelcfg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/xmlaccelcfg.cxx b/unotools/source/config/xmlaccelcfg.cxx index bd8f14c0373a..6839edfd465e 100644 --- a/unotools/source/config/xmlaccelcfg.cxx +++ b/unotools/source/config/xmlaccelcfg.cxx @@ -377,7 +377,7 @@ void OWriteAccelatorDocumentHandler::WriteAcceleratorDocument() m_xWriteDocumentHandler->ignorableWhitespace( OUString() ); std::list< SvtAcceleratorConfigItem>::const_iterator p; - for ( p = m_aWriteAcceleratorList.begin(); p != m_aWriteAcceleratorList.end(); p++ ) + for ( p = m_aWriteAcceleratorList.begin(); p != m_aWriteAcceleratorList.end(); ++p ) WriteAcceleratorItem( *p ); m_xWriteDocumentHandler->endElement( OUString( RTL_CONSTASCII_USTRINGPARAM( ELEMENT_ACCELERATORLIST )) ); |