summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/RowSetDrop.cxx
diff options
context:
space:
mode:
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)
{