summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwptblformula.hxx
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.hxx
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.hxx')
-rw-r--r--lotuswordpro/source/filter/lwptblformula.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwptblformula.hxx b/lotuswordpro/source/filter/lwptblformula.hxx
index de39862915ef..d5610384442d 100644
--- a/lotuswordpro/source/filter/lwptblformula.hxx
+++ b/lotuswordpro/source/filter/lwptblformula.hxx
@@ -64,8 +64,6 @@
#ifndef INCLUDED_LOTUSWORDPRO_SOURCE_FILTER_LWPTBLFORMULA_HXX
#define INCLUDED_LOTUSWORDPRO_SOURCE_FILTER_LWPTBLFORMULA_HXX
-using namespace std;
-
/* These token types are written to the file. Don't change their
values unless you filter them.
*/
@@ -178,7 +176,7 @@ public:
OUString ToArgString(LwpTableLayout* pCellsMap) SAL_OVERRIDE;
protected:
- vector<LwpFormulaArg*> m_aArgs;
+ std::vector<LwpFormulaArg*> m_aArgs;
sal_uInt16 m_nTokenType;
};
@@ -214,7 +212,7 @@ protected:
bool ReadArguments(LwpFormulaFunc& aFunc);
bool m_bSupported;
private:
- vector<LwpFormulaArg*> m_aStack;
+ std::vector<LwpFormulaArg*> m_aStack;
bool ReadConst();
void MarkUnsupported(sal_uInt16 TokenType);