summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorGabor Kelemen <gabor.kelemen.extern@allotropia.de>2023-02-14 23:34:19 +0100
committerGabor Kelemen <kelemeng@ubuntu.com>2023-02-16 08:14:21 +0000
commit79176694ddc7bce40ce2b82d3f332be8642a5167 (patch)
tree7a2760db137310e6316f4917e3c845dbe6d8a9b7 /starmath
parenta38f13e364f9416a1a6d1163eba431eb1c6d5908 (diff)
Drop 'using namespace ::std' in dirs s*
Change-Id: If3119a1f2274aac0bf70576458e3adb4505a2a45 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147076 Tested-by: Jenkins Reviewed-by: Gabor Kelemen <kelemeng@ubuntu.com>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/unomodel.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/starmath/source/unomodel.cxx b/starmath/source/unomodel.cxx
index 985c2971f035..f2f8abfb50e2 100644
--- a/starmath/source/unomodel.cxx
+++ b/starmath/source/unomodel.cxx
@@ -55,7 +55,6 @@
#include <cfgitem.hxx>
using namespace ::cppu;
-using namespace ::std;
using namespace ::comphelper;
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
@@ -812,7 +811,7 @@ void SmModel::_getPropertyValues( const PropertyMapEntry **ppEntries, Any *pValu
// this is get
SmModule *pp = SM_MOD();
const SmSymbolManager &rManager = pp->GetSymbolManager();
- vector < const SmSym * > aVector;
+ std::vector < const SmSym * > aVector;
const SymbolPtrVec_t aSymbols( rManager.GetSymbols() );
for (const SmSym* pSymbol : aSymbols)