[Libreoffice-commits] .: sw/source

Caolán McNamara caolan at kemper.freedesktop.org
Sat Jan 1 12:53:11 PST 2011


 sw/source/filter/ww8/wrtww8.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f9742f4ea5fa8ed3012f5c3553c757ac60f8d810
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sat Jan 1 20:52:06 2011 +0000

    cppcheck: prefer prefix variant

diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 8dbc0f0..9d56ef3 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -3771,7 +3771,7 @@ void MSWordExportBase::OutputStartNode( const SwStartNode & rNode)
             ww8::WW8TableNodeInfoInner::Pointer_t pInner = aIt->second;
                         
             AttrOutput().TableNodeInfoInner(pInner);
-            aIt++;
+            ++aIt;
         }
     }
 #ifdef DEBUG
@@ -3802,7 +3802,7 @@ void MSWordExportBase::OutputEndNode( const SwEndNode &rNode )
          {
             ww8::WW8TableNodeInfoInner::Pointer_t pInner = aIt->second;
             AttrOutput().TableNodeInfoInner(pInner);
-            aIt++;
+            ++aIt;
          }
      }
 #ifdef DEBUG


More information about the Libreoffice-commits mailing list