diff options
author | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-19 18:15:54 +0100 |
---|---|---|
committer | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-19 18:15:54 +0100 |
commit | ae59adfab27b2aa1446c4e862578f0bf38f9d0ef (patch) | |
tree | 6fe1dba20e88110f8871bddf2a75e12033f03ac4 /connectivity/source/drivers/jdbc/jservices.cxx | |
parent | b67fc189ee577021f7a4aa4ca90040f68e0326d4 (diff) |
TL_CONSTASCII_USTRINGPARAM in libs core 20
Diffstat (limited to 'connectivity/source/drivers/jdbc/jservices.cxx')
-rw-r--r-- | connectivity/source/drivers/jdbc/jservices.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/jdbc/jservices.cxx b/connectivity/source/drivers/jdbc/jservices.cxx index 585464125b9d..f29909d94fbd 100644 --- a/connectivity/source/drivers/jdbc/jservices.cxx +++ b/connectivity/source/drivers/jdbc/jservices.cxx @@ -61,9 +61,9 @@ void REGISTER_PROVIDER( const Reference< ::com::sun::star::registry::XRegistryKey > & xKey) { OUString aMainKeyName; - aMainKeyName = OUString::createFromAscii("/"); + aMainKeyName = OUString(RTL_CONSTASCII_USTRINGPARAM("/")); aMainKeyName += aServiceImplName; - aMainKeyName += OUString::createFromAscii("/UNO/SERVICES"); + aMainKeyName += OUString(RTL_CONSTASCII_USTRINGPARAM("/UNO/SERVICES")); Reference< ::com::sun::star::registry::XRegistryKey > xNewKey( xKey->createKey(aMainKeyName) ); OSL_ENSURE(xNewKey.is(), "SBA::component_writeInfo : could not create a registry key !"); |