summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-11-26 21:29:11 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-11-26 21:29:11 +0000
commitaa36f9278f8092aa7d4ad299cb13b4591d8a1d87 (patch)
tree2b3ddbf2f21fb720dda6cf6a65a944c493058c9d
parent9533991ab519d9a137e67ce44f4c1f45e58652f2 (diff)
cppcheck: use prefix variant
Notes
Notes: split repo tag: extensions_LIBREOFFICE_PRE_BOOTSTRAP_BUILD
-rw-r--r--sdext/source/pdfimport/tree/drawtreevisiting.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sdext/source/pdfimport/tree/drawtreevisiting.cxx b/sdext/source/pdfimport/tree/drawtreevisiting.cxx
index edf0e9f45a7b..d23232d5ca79 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" );