summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwptblformula.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-05-19 02:19:41 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-05-19 20:04:24 +0200
commitade92713c32cf36cfb516f76824eef6c3d124321 (patch)
treecef9c634f2590fd8a427d89b7e59d8b8744bc304 /lotuswordpro/source/filter/lwptblformula.cxx
parentcanvas: drop using from headers (diff)
downloadcore-ade92713c32cf36cfb516f76824eef6c3d124321.tar.gz
core-ade92713c32cf36cfb516f76824eef6c3d124321.zip
lwp: remove using namespace std from headers
Change-Id: Ied5806a1706473ac0fe4e1baebb71256cf56681d
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 ae55778833dd..dfe0cb410b39 100644
--- a/lotuswordpro/source/filter/lwptblformula.cxx
+++ b/lotuswordpro/source/filter/lwptblformula.cxx
@@ -597,7 +597,7 @@ OUString LwpFormulaFunc::ToString(LwpTableLayout* pCellsMap)
aFormula += " ";//Append a blank space
//Append args
- vector<LwpFormulaArg*>::iterator aItr;
+ std::vector<LwpFormulaArg*>::iterator aItr;
for (aItr=m_aArgs.begin();aItr!=m_aArgs.end();++aItr)
{
aFormula += (*aItr)->ToArgString(pCellsMap) + "|"; //separator
@@ -628,7 +628,7 @@ OUString LwpFormulaOp::ToString(LwpTableLayout* pCellsMap)
OUString aFormula;
if (2==m_aArgs.size())
{
- vector<LwpFormulaArg*>::iterator aItr = m_aArgs.end();
+ std::vector<LwpFormulaArg*>::iterator aItr = m_aArgs.end();
--aItr;
aFormula += (*aItr)->ToArgString(pCellsMap) + " ";
@@ -661,7 +661,7 @@ OUString LwpFormulaUnaryOp::ToString(LwpTableLayout* pCellsMap)
OUString aFuncName = LwpFormulaTools::GetName(m_nTokenType);
aFormula += aFuncName;
- vector<LwpFormulaArg*>::iterator aItr = m_aArgs.begin();
+ std::vector<LwpFormulaArg*>::iterator aItr = m_aArgs.begin();
aFormula += (*aItr)->ToArgString(pCellsMap);
}
else