summaryrefslogtreecommitdiff
path: root/stoc/source/registry_tdprovider/tdprovider.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'stoc/source/registry_tdprovider/tdprovider.cxx')
-rw-r--r--stoc/source/registry_tdprovider/tdprovider.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/stoc/source/registry_tdprovider/tdprovider.cxx b/stoc/source/registry_tdprovider/tdprovider.cxx
index a0a6ba6309cc..9a739f0fc303 100644
--- a/stoc/source/registry_tdprovider/tdprovider.cxx
+++ b/stoc/source/registry_tdprovider/tdprovider.cxx
@@ -56,13 +56,13 @@ namespace stoc_bootstrap
uno::Sequence< OUString > rdbtdp_getSupportedServiceNames()
{
Sequence< OUString > seqNames(1);
- seqNames.getArray()[0] = OUString(RTL_CONSTASCII_USTRINGPARAM(SERVICENAME));
+ seqNames.getArray()[0] = OUString(SERVICENAME);
return seqNames;
}
OUString rdbtdp_getImplementationName()
{
- return OUString(RTL_CONSTASCII_USTRINGPARAM(IMPLNAME));
+ return OUString(IMPLNAME);
}
}
@@ -94,9 +94,9 @@ class ProviderImpl
public:
TypeDescriptionManagerWrapper( ProviderImpl * pProvider )
: m_xTDMgr( pProvider->_xContext->getValueByName(
- OUString( RTL_CONSTASCII_USTRINGPARAM(
+ OUString(
"/singletons/com.sun.star.reflection."
- "theTypeDescriptionManager") ) ),
+ "theTypeDescriptionManager" ) ),
UNO_QUERY_THROW ),
m_xThisProvider( pProvider )
{}