From b57d51e32fb85e9cde64f85719725253162c42e4 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 17 Feb 2017 19:06:24 +0200 Subject: Drop :: prefix from std in [de]*/ Change-Id: I3247894fe022dce7f0aa351bd85fefcd7c545dd4 Reviewed-on: https://gerrit.libreoffice.org/34377 Reviewed-by: Tor Lillqvist Tested-by: Tor Lillqvist --- dbaccess/source/ui/misc/RowSetDrop.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dbaccess/source/ui/misc/RowSetDrop.cxx') diff --git a/dbaccess/source/ui/misc/RowSetDrop.cxx b/dbaccess/source/ui/misc/RowSetDrop.cxx index e006693b208a..944b8b6d631c 100644 --- a/dbaccess/source/ui/misc/RowSetDrop.cxx +++ b/dbaccess/source/ui/misc/RowSetDrop.cxx @@ -100,8 +100,8 @@ bool ORowSetImportExport::Write() bool ORowSetImportExport::Read() { // check if there is any column to copy - if(::std::find_if(m_aColumnMapping.begin(),m_aColumnMapping.end(), - ::std::bind2nd(::std::greater(),0)) == m_aColumnMapping.end()) + if(std::find_if(m_aColumnMapping.begin(),m_aColumnMapping.end(), + std::bind2nd(std::greater(),0)) == m_aColumnMapping.end()) return false; bool bContinue = true; if(m_aSelection.getLength()) @@ -157,8 +157,8 @@ bool ORowSetImportExport::insertNewRow() { m_xTargetResultSetUpdate->moveToInsertRow(); sal_Int32 i = 1; - ::std::vector::const_iterator aEnd = m_aColumnMapping.end(); - for (::std::vector::const_iterator aIter = m_aColumnMapping.begin(); aIter != aEnd ;++aIter,++i ) + std::vector::const_iterator aEnd = m_aColumnMapping.end(); + for (std::vector::const_iterator aIter = m_aColumnMapping.begin(); aIter != aEnd ;++aIter,++i ) { if(*aIter > 0) { -- cgit