summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_driver.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_driver.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_driver.cxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_driver.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_driver.cxx b/connectivity/source/drivers/postgresql/pq_driver.cxx
index 2d2d03daacef..ea5f62ceb244 100644
--- a/connectivity/source/drivers/postgresql/pq_driver.cxx
+++ b/connectivity/source/drivers/postgresql/pq_driver.cxx
@@ -65,8 +65,6 @@
#include "pq_driver.hxx"
-using rtl::OUString;
-using rtl::OUStringToOString;
using osl::MutexGuard;
using cppu::WeakComponentImplHelper2;
@@ -138,7 +136,7 @@ Reference< XConnection > Driver::connect(
UNO_QUERY );
}
-sal_Bool Driver::acceptsURL( const ::rtl::OUString& url )
+sal_Bool Driver::acceptsURL( const OUString& url )
throw (SQLException, RuntimeException)
{
return url.matchAsciiL( RTL_CONSTASCII_STRINGPARAM( "sdbc:postgresql:" ) );
@@ -201,7 +199,7 @@ Reference< XTablesSupplier > Driver::getDataDefinitionByConnection(
}
Reference< XTablesSupplier > Driver::getDataDefinitionByURL(
- const ::rtl::OUString& url, const Sequence< PropertyValue >& info )
+ const OUString& url, const Sequence< PropertyValue >& info )
throw (SQLException, RuntimeException)
{
return Reference< XTablesSupplier > ( connect( url, info ), UNO_QUERY );
@@ -317,8 +315,8 @@ void OOneInstanceComponentFactory::disposing()
// Reference< XSingleComponentFactory > createOneInstanceComponentFactory(
// cppu::ComponentFactoryFunc fptr,
-// ::rtl::OUString const & rImplementationName,
-// ::com::sun::star::uno::Sequence< ::rtl::OUString > const & rServiceNames,
+// OUString const & rImplementationName,
+// ::com::sun::star::uno::Sequence< OUString > const & rServiceNames,
// rtl_ModuleCount * pModCount = 0 )
// SAL_THROW(())
// {