diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-03-26 23:11:58 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-03-26 23:13:20 +0200 |
commit | a04fee7204b769dc98c3592aaed2dce5e8eb0161 (patch) | |
tree | 7d7f6874b067860e0ebd73c7d033310c25af75ad /sw | |
parent | c7b8b3482c50eb5de8d43acf036642dc684fe8d9 (diff) |
Fix Prefer prefix ++/-- operators for non-primitive types
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/docnode/ndcopy.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/docnode/ndcopy.cxx b/sw/source/core/docnode/ndcopy.cxx index 97557f2ab348..9b1ec4ce0d53 100644 --- a/sw/source/core/docnode/ndcopy.cxx +++ b/sw/source/core/docnode/ndcopy.cxx @@ -1478,7 +1478,7 @@ void SwDoc::CopyFlyInFlyImpl( const SwNodeRange& rRg, //die Chains entsprechend aufgebaut werden koennen. ::std::vector< SwFrmFmt* > aVecSwFrmFmt; - for (::std::set< _ZSortFly >::const_iterator it=aSet.begin() ; it != aSet.end(); it++ ) + for (::std::set< _ZSortFly >::const_iterator it=aSet.begin() ; it != aSet.end(); ++it ) { // #i59964# // correct determination of new anchor position |