summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/file/FStringFunctions.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/file/FStringFunctions.cxx')
-rw-r--r--connectivity/source/drivers/file/FStringFunctions.cxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/connectivity/source/drivers/file/FStringFunctions.cxx b/connectivity/source/drivers/file/FStringFunctions.cxx
index f19dbc207db5..be10a9ed8a6d 100644
--- a/connectivity/source/drivers/file/FStringFunctions.cxx
+++ b/connectivity/source/drivers/file/FStringFunctions.cxx
@@ -57,14 +57,14 @@ ORowSetValue OOp_CharLength::operate(const ORowSetValue& lhs) const
return lhs.getString().getLength();
}
-ORowSetValue OOp_Char::operate(const ::std::vector<ORowSetValue>& lhs) const
+ORowSetValue OOp_Char::operate(const std::vector<ORowSetValue>& lhs) const
{
if ( lhs.empty() )
return ORowSetValue();
OUString sRet;
- ::std::vector<ORowSetValue>::const_reverse_iterator aIter = lhs.rbegin();
- ::std::vector<ORowSetValue>::const_reverse_iterator aEnd = lhs.rend();
+ std::vector<ORowSetValue>::const_reverse_iterator aIter = lhs.rbegin();
+ std::vector<ORowSetValue>::const_reverse_iterator aEnd = lhs.rend();
for (; aIter != aEnd; ++aIter)
{
if ( !aIter->isNull() )
@@ -78,14 +78,14 @@ ORowSetValue OOp_Char::operate(const ::std::vector<ORowSetValue>& lhs) const
return sRet;
}
-ORowSetValue OOp_Concat::operate(const ::std::vector<ORowSetValue>& lhs) const
+ORowSetValue OOp_Concat::operate(const std::vector<ORowSetValue>& lhs) const
{
if ( lhs.empty() )
return ORowSetValue();
OUStringBuffer sRet;
- ::std::vector<ORowSetValue>::const_reverse_iterator aIter = lhs.rbegin();
- ::std::vector<ORowSetValue>::const_reverse_iterator aEnd = lhs.rend();
+ std::vector<ORowSetValue>::const_reverse_iterator aIter = lhs.rbegin();
+ std::vector<ORowSetValue>::const_reverse_iterator aEnd = lhs.rend();
for (; aIter != aEnd; ++aIter)
{
if ( aIter->isNull() )
@@ -97,10 +97,10 @@ ORowSetValue OOp_Concat::operate(const ::std::vector<ORowSetValue>& lhs) const
return sRet.makeStringAndClear();
}
-ORowSetValue OOp_Locate::operate(const ::std::vector<ORowSetValue>& lhs) const
+ORowSetValue OOp_Locate::operate(const std::vector<ORowSetValue>& lhs) const
{
- ::std::vector<ORowSetValue>::const_iterator aIter = lhs.begin();
- ::std::vector<ORowSetValue>::const_iterator aEnd = lhs.end();
+ std::vector<ORowSetValue>::const_iterator aIter = lhs.begin();
+ std::vector<ORowSetValue>::const_iterator aEnd = lhs.end();
for (; aIter != aEnd; ++aIter)
{
if ( aIter->isNull() )
@@ -115,10 +115,10 @@ ORowSetValue OOp_Locate::operate(const ::std::vector<ORowSetValue>& lhs) const
return lhs[1].getString().indexOf(lhs[2].getString(),lhs[0]) + 1;
}
-ORowSetValue OOp_SubString::operate(const ::std::vector<ORowSetValue>& lhs) const
+ORowSetValue OOp_SubString::operate(const std::vector<ORowSetValue>& lhs) const
{
- ::std::vector<ORowSetValue>::const_iterator aIter = lhs.begin();
- ::std::vector<ORowSetValue>::const_iterator aEnd = lhs.end();
+ std::vector<ORowSetValue>::const_iterator aIter = lhs.begin();
+ std::vector<ORowSetValue>::const_iterator aEnd = lhs.end();
for (; aIter != aEnd; ++aIter)
{
if ( aIter->isNull() )
@@ -168,7 +168,7 @@ ORowSetValue OOp_Space::operate(const ORowSetValue& lhs) const
return sRet.makeStringAndClear();
}
-ORowSetValue OOp_Replace::operate(const ::std::vector<ORowSetValue>& lhs) const
+ORowSetValue OOp_Replace::operate(const std::vector<ORowSetValue>& lhs) const
{
if ( lhs.size() != 3 )
return ORowSetValue();
@@ -200,7 +200,7 @@ ORowSetValue OOp_Repeat::operate(const ORowSetValue& lhs,const ORowSetValue& rhs
return sRet;
}
-ORowSetValue OOp_Insert::operate(const ::std::vector<ORowSetValue>& lhs) const
+ORowSetValue OOp_Insert::operate(const std::vector<ORowSetValue>& lhs) const
{
if ( lhs.size() != 4 )
return ORowSetValue();