summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_driver.cxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_driver.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_driver.cxx b/connectivity/source/drivers/postgresql/pq_driver.cxx
index 96e719faf5e0..2d2d03daacef 100644
--- a/connectivity/source/drivers/postgresql/pq_driver.cxx
+++ b/connectivity/source/drivers/postgresql/pq_driver.cxx
@@ -102,8 +102,7 @@ OUString DriverGetImplementationName()
if (! p )
{
MutexGuard guard( osl::Mutex::getGlobalMutex() );
- static OUString instance(
- RTL_CONSTASCII_USTRINGPARAM( "org.openoffice.comp.connectivity.pq.Driver.noext" ) );
+ static OUString instance( "org.openoffice.comp.connectivity.pq.Driver.noext" );
p = &instance;
}
return *p;
@@ -115,7 +114,7 @@ Sequence< OUString > DriverGetSupportedServiceNames()
if( ! p )
{
MutexGuard guard( osl::Mutex::getGlobalMutex() );
- OUString tmp( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.sdbc.Driver" ) );
+ OUString tmp( "com.sun.star.sdbc.Driver" );
static Sequence< OUString > instance( &tmp,1 );
p = &instance;
}