summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_array.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /connectivity/source/drivers/postgresql/pq_array.cxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_array.cxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_array.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_array.cxx b/connectivity/source/drivers/postgresql/pq_array.cxx
index 9344bd266fb6..dd485a5ffe86 100644
--- a/connectivity/source/drivers/postgresql/pq_array.cxx
+++ b/connectivity/source/drivers/postgresql/pq_array.cxx
@@ -65,7 +65,6 @@
#include "pq_statics.hxx"
#include "pq_sequenceresultset.hxx"
-using rtl::OUString;
using com::sun::star::sdbc::SQLException;
using com::sun::star::uno::Any;
@@ -75,7 +74,7 @@ namespace pq_sdbc_driver
{
-::rtl::OUString Array::getBaseTypeName( )
+OUString Array::getBaseTypeName( )
throw (::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
return OUString( "varchar" );
@@ -137,7 +136,7 @@ void Array::checkRange( sal_Int32 index, sal_Int32 count )
{
if( index >= 1 && index -1 + count <= m_data.getLength() )
return;
- rtl::OUStringBuffer buf;
+ OUStringBuffer buf;
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM( "Array::getArrayAtIndex(): allowed range for index + count " ) );
buf.append( m_data.getLength() );
buf.appendAscii( ", got " );
@@ -145,7 +144,7 @@ void Array::checkRange( sal_Int32 index, sal_Int32 count )
buf.appendAscii( " + " );
buf.append( count );
- throw SQLException( buf.makeStringAndClear() , *this, rtl::OUString(), 1, Any());
+ throw SQLException( buf.makeStringAndClear() , *this, OUString(), 1, Any());
}