summaryrefslogtreecommitdiff
path: root/sw/source/filter/rtf
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-10-15 23:31:02 +0200
committerLuboš Luňák <l.lunak@suse.cz>2012-10-15 23:33:09 +0200
commitf2655f92c193ce37aa76f2dd285d260d214f7d8c (patch)
treeb0b4bc3211f73e0aa1b451318385f67d979dbf0c /sw/source/filter/rtf
parentdc3aa430f911b9c2131034c0f517c297820e565d (diff)
postfix operator++ -> prefix operator++
Change-Id: I51506a83009db838d8e12d5559c46b404e59f9b5
Diffstat (limited to 'sw/source/filter/rtf')
-rw-r--r--sw/source/filter/rtf/rtftbl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/rtf/rtftbl.cxx b/sw/source/filter/rtf/rtftbl.cxx
index 884878be1902..6e90c94a0a7f 100644
--- a/sw/source/filter/rtf/rtftbl.cxx
+++ b/sw/source/filter/rtf/rtftbl.cxx
@@ -907,7 +907,7 @@ void SwRTFParser::NewTblLine()
SwCntntNode* pCNd = aIdx.GetNode().GetCntntNode();
if( pCNd && pCNd->HasSwAttrSet() )
pCNd->ResetAllAttr();
- aIdx++;
+ ++aIdx;
}
}
pPam->Exchange();