diff options
author | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-19 16:20:47 +0100 |
---|---|---|
committer | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-19 16:20:47 +0100 |
commit | 806fe39f9397c32cd03190854dd1cd140e268745 (patch) | |
tree | 07a4d43b1281ef13bacc8cdaf451a7e8af702c03 /connectivity/source/inc | |
parent | d4ad983a0e1d33db4698806abede572f7837654c (diff) |
TL_CONSTASCII_USTRINGPARAM in libs core 17
Diffstat (limited to 'connectivity/source/inc')
-rw-r--r-- | connectivity/source/inc/ado/ACollection.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/inc/ado/ACollection.hxx b/connectivity/source/inc/ado/ACollection.hxx index 485a151ca4a8..3dafa36b9b3a 100644 --- a/connectivity/source/inc/ado/ACollection.hxx +++ b/connectivity/source/inc/ado/ACollection.hxx @@ -81,7 +81,7 @@ namespace connectivity virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw (staruno::RuntimeException) { - return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.ACollection"); + return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.sdbcx.ACollection")); } virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& _rServiceName ) throw(staruno::RuntimeException) { @@ -96,7 +96,7 @@ namespace connectivity virtual staruno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw(staruno::RuntimeException) { staruno::Sequence< ::rtl::OUString > aSupported(1); - aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.Container"); + aSupported[0] = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.sdbcx.Container")); return aSupported; } |