summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/bencont.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-23 16:34:20 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-23 16:34:20 +0000
commitdbba22e933c70211ee8a479b7800cf57800555c1 (patch)
tree2d9827d4c6e666f105f0edb071d2a484585da75b /lotuswordpro/source/filter/bencont.cxx
parent2da3de9965fa13d82ed9629c988c489239e61707 (diff)
cppcheck: prefer prefix variant
Diffstat (limited to 'lotuswordpro/source/filter/bencont.cxx')
-rw-r--r--lotuswordpro/source/filter/bencont.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/bencont.cxx b/lotuswordpro/source/filter/bencont.cxx
index e834b79f31e0..c66b8768b83f 100644
--- a/lotuswordpro/source/filter/bencont.cxx
+++ b/lotuswordpro/source/filter/bencont.cxx
@@ -416,7 +416,7 @@ BenError LtcBenContainer::CreateGraphicStreams(std::vector<SvStream *> * pStream
/* traverse the found properties and construct the stream vectors */
std::vector<std::string>::iterator itor;
- for (itor = aGrPropertyVector.begin(); itor != aGrPropertyVector.end(); itor ++)
+ for (itor = aGrPropertyVector.begin(); itor != aGrPropertyVector.end(); ++itor)
{
// get property names with suffix of S&D
char sSName[32], sDName[32];
@@ -427,7 +427,7 @@ BenError LtcBenContainer::CreateGraphicStreams(std::vector<SvStream *> * pStream
// erase strings in vector
std::vector<std::string>::iterator itorSearch;
- for (itorSearch = aGrPropertyVector.begin(); itorSearch != aGrPropertyVector.end(); itorSearch ++)
+ for (itorSearch = aGrPropertyVector.begin(); itorSearch != aGrPropertyVector.end(); ++itorSearch)
{
if( (*itorSearch == sSName) || (*itorSearch == sDName) )
{