summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwptblformula.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwptblformula.cxx')
-rw-r--r--lotuswordpro/source/filter/lwptblformula.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwptblformula.cxx b/lotuswordpro/source/filter/lwptblformula.cxx
index 3463c5f4e850..d1f08fdba3b2 100644
--- a/lotuswordpro/source/filter/lwptblformula.cxx
+++ b/lotuswordpro/source/filter/lwptblformula.cxx
@@ -628,7 +628,7 @@ String LwpFormulaFunc::ToString(LwpTableLayout* pCellsMap)
//Append args
vector<LwpFormulaArg*>::iterator aItr;
- for (aItr=m_aArgs.begin();aItr!=m_aArgs.end();aItr++)
+ for (aItr=m_aArgs.begin();aItr!=m_aArgs.end();++aItr)
{
aFormula.Append( (*aItr)->ToArgString(pCellsMap) );
aFormula.AppendAscii("|");//separator
@@ -660,7 +660,7 @@ String LwpFormulaOp::ToString(LwpTableLayout* pCellsMap)
if (2==m_aArgs.size())
{
vector<LwpFormulaArg*>::iterator aItr = m_aArgs.end();
- aItr--;
+ --aItr;
aFormula.Append( (*aItr)->ToArgString(pCellsMap) );
aFormula.AppendAscii(" ");
@@ -670,7 +670,7 @@ String LwpFormulaOp::ToString(LwpTableLayout* pCellsMap)
aFormula.AppendAscii(" ");
- aItr--;
+ --aItr;
aFormula.Append( (*aItr)->ToArgString(pCellsMap) );
}
else