diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2011-11-20 17:38:23 +0100 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2011-11-20 17:43:53 +0100 |
commit | 0e9473eca6f559bc83eb061384b0db936e4ed8e1 (patch) | |
tree | b400a72b02d4f17b1142cc246553dfaabc9ef86b /connectivity | |
parent | 8ec713573073baa3bb90e6a4051938d700480c03 (diff) |
fdo#36555: pImplementationName is not a compile-time constant
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/ado/Aservices.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/ado/Aservices.cxx b/connectivity/source/drivers/ado/Aservices.cxx index 5fd7231d7a07..38876d86a9ed 100644 --- a/connectivity/source/drivers/ado/Aservices.cxx +++ b/connectivity/source/drivers/ado/Aservices.cxx @@ -59,7 +59,7 @@ struct ProviderRequest sal_Char const* pImplementationName ) : xServiceManager(reinterpret_cast<XMultiServiceFactory*>(pServiceManager)) - , sImplementationName(OUString(RTL_CONSTASCII_USTRINGPARAM(pImplementationName))) + , sImplementationName(OUString::createFromAscii(pImplementationName)) { } |