[Libreoffice-commits] .: sw/source

Lubos Lunak llunak at kemper.freedesktop.org
Tue Jul 24 07:25:32 PDT 2012


 sw/source/filter/ww8/ww8par.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f0460881e7a60d2852d6314991cd3627623d6be8
Author: Luboš Luňák <l.lunak at suse.cz>
Date:   Tue Jul 24 16:23:27 2012 +0200

    ++aIter++ is quite funny, but it's in practice the same like ++aIter
    
    Change-Id: Ie88d995cd3b5d48d0096f3c1be4344b78f425b07

diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 54118d3..292b4fb 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -5185,7 +5185,7 @@ void SwWW8ImplReader::SetOutLineStyles()
 
         int nMax = 0;
         myIter aEnd2 = aRuleMap.end();
-        for (myIter aIter = aRuleMap.begin(); aIter != aEnd2; ++aIter++)
+        for (myIter aIter = aRuleMap.begin(); aIter != aEnd2; ++aIter)
         {
             if (aIter->second > nMax)
             {


More information about the Libreoffice-commits mailing list