From 857b74041aa339e56ee8b2a05a910172753ed783 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Wed, 15 Feb 2023 01:18:28 +0100 Subject: Drop 'using namespace ::std' in dirs [u-x]* Change-Id: I8c044369826b00241496cfc7ba2463e507c0d1a6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147077 Tested-by: Jenkins Reviewed-by: Gabor Kelemen --- xmloff/source/style/xmlprmap.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'xmloff/source/style/xmlprmap.cxx') diff --git a/xmloff/source/style/xmlprmap.cxx b/xmloff/source/style/xmlprmap.cxx index f7145161e3b8..315a35238940 100644 --- a/xmloff/source/style/xmlprmap.cxx +++ b/xmloff/source/style/xmlprmap.cxx @@ -32,8 +32,6 @@ #include -using namespace ::std; - using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; using ::xmloff::token::GetXMLToken; @@ -352,7 +350,7 @@ void XMLPropertySetMapper::RemoveEntry( sal_Int32 nIndex ) const sal_Int32 nEntries = GetEntryCount(); if( nIndex>=nEntries || nIndex<0 ) return; - vector < XMLPropertySetMapperEntry_Impl >::iterator aEIter = mpImpl->maMapEntries.begin(); + std::vector < XMLPropertySetMapperEntry_Impl >::iterator aEIter = mpImpl->maMapEntries.begin(); std::advance(aEIter, nIndex); mpImpl->maMapEntries.erase( aEIter ); } -- cgit