summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/RowSetDrop.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-02-17 19:06:24 +0200
committerTor Lillqvist <tml@collabora.com>2017-02-17 18:41:19 +0000
commitb57d51e32fb85e9cde64f85719725253162c42e4 (patch)
treeafe75470b9fc3c12a3d240577b07042985882675 /dbaccess/source/ui/misc/RowSetDrop.cxx
parentc910d1dae1a9fcf0591098244debc863dd59618a (diff)
Drop :: prefix from std in [de]*/
Change-Id: I3247894fe022dce7f0aa351bd85fefcd7c545dd4 Reviewed-on: https://gerrit.libreoffice.org/34377 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'dbaccess/source/ui/misc/RowSetDrop.cxx')
-rw-r--r--dbaccess/source/ui/misc/RowSetDrop.cxx8
1 files changed, 4 insertions, 4 deletions
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<sal_Int32>(),0)) == m_aColumnMapping.end())
+ if(std::find_if(m_aColumnMapping.begin(),m_aColumnMapping.end(),
+ std::bind2nd(std::greater<sal_Int32>(),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<sal_Int32>::const_iterator aEnd = m_aColumnMapping.end();
- for (::std::vector<sal_Int32>::const_iterator aIter = m_aColumnMapping.begin(); aIter != aEnd ;++aIter,++i )
+ std::vector<sal_Int32>::const_iterator aEnd = m_aColumnMapping.end();
+ for (std::vector<sal_Int32>::const_iterator aIter = m_aColumnMapping.begin(); aIter != aEnd ;++aIter,++i )
{
if(*aIter > 0)
{