diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-26 21:29:11 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-26 21:29:11 +0000 |
commit | e82fdca3d343c9b3508d1aeea6a8a8639e130b40 (patch) | |
tree | cf6cb45413be9d29bba323eda3487045cac2893c | |
parent | 3421262970b3de1fd33d304bedaa57a185077741 (diff) |
cppcheck: use prefix variantLIBREOFFICE_PRE_BOOTSTRAP_BUILDfeature/bootstrap-build
-rw-r--r-- | sdext/source/pdfimport/tree/drawtreevisiting.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sdext/source/pdfimport/tree/drawtreevisiting.cxx b/sdext/source/pdfimport/tree/drawtreevisiting.cxx index 92d01d3..b5f827b 100644 --- a/sdext/source/pdfimport/tree/drawtreevisiting.cxx +++ b/sdext/source/pdfimport/tree/drawtreevisiting.cxx @@ -98,7 +98,7 @@ void DrawXmlEmitter::visit( HyperlinkElement& elem, const std::list< Element* >: while( this_it !=elem.Children.end() && *this_it != &elem ) { (*this_it)->visitedBy( *this, this_it ); - this_it++; + ++this_it; } m_rEmitContext.rEmitter.endTag( pType ); } @@ -149,7 +149,7 @@ void DrawXmlEmitter::visit( TextElement& elem, const std::list< Element* >::cons while( this_it !=elem.Children.end() && *this_it != &elem ) { (*this_it)->visitedBy( *this, this_it ); - this_it++; + ++this_it; } m_rEmitContext.rEmitter.endTag( "text:span" ); @@ -171,7 +171,7 @@ void DrawXmlEmitter::visit( ParagraphElement& elem, const std::list< Element* >: while( this_it !=elem.Children.end() && *this_it != &elem ) { (*this_it)->visitedBy( *this, this_it ); - this_it++; + ++this_it; } m_rEmitContext.rEmitter.endTag( pTagType ); @@ -256,7 +256,7 @@ void DrawXmlEmitter::visit( FrameElement& elem, const std::list< Element* >::con while( this_it !=elem.Children.end() && *this_it != &elem ) { (*this_it)->visitedBy( *this, this_it ); - this_it++; + ++this_it; } if( bTextBox ) @@ -354,7 +354,7 @@ void DrawXmlEmitter::visit( PageElement& elem, const std::list< Element* >::cons while( this_it !=elem.Children.end() && *this_it != &elem ) { (*this_it)->visitedBy( *this, this_it ); - this_it++; + ++this_it; } m_rEmitContext.rEmitter.endTag("draw:page"); @@ -370,7 +370,7 @@ void DrawXmlEmitter::visit( DocumentElement& elem, const std::list< Element* >:: while( this_it !=elem.Children.end() && *this_it != &elem ) { (*this_it)->visitedBy( *this, this_it ); - this_it++; + ++this_it; } m_rEmitContext.rEmitter.endTag( m_bWriteDrawDocument ? "office:drawing" : "office:presentation" ); |