summaryrefslogtreecommitdiff
path: root/stoc/test/testloader.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-06-02 12:05:32 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-06-02 12:58:05 -0500
commit6bcd6d89a1a4beccf7ec294947673803761a0d52 (patch)
treed4aa074093a64dc35552e61ea6b1c498c2157dd3 /stoc/test/testloader.cxx
parent4d20c0d5893718e14f661cd316a6def6a008518e (diff)
targeted string re-work
Change-Id: Ia4cf1dcae7d40eca29f84fa7277681d1c1fb61bd
Diffstat (limited to 'stoc/test/testloader.cxx')
-rw-r--r--stoc/test/testloader.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/test/testloader.cxx b/stoc/test/testloader.cxx
index dad125fe669e..d4d39d3ceff9 100644
--- a/stoc/test/testloader.cxx
+++ b/stoc/test/testloader.cxx
@@ -78,13 +78,13 @@ SAL_IMPLEMENT_MAIN()
Module module;
OUString dllName(
- RTL_CONSTASCII_USTRINGPARAM("bootstrap.uno" SAL_DLLEXTENSION) );
+ "bootstrap.uno" SAL_DLLEXTENSION );
if (module.load(dllName))
{
// try to get provider from module
component_getFactoryFunc pCompFactoryFunc = (component_getFactoryFunc)
- module.getFunctionSymbol( OUString(RTL_CONSTASCII_USTRINGPARAM(COMPONENT_GETFACTORY)) );
+ module.getFunctionSymbol( OUString(COMPONENT_GETFACTORY) );
if (pCompFactoryFunc)
{
@@ -113,7 +113,7 @@ SAL_IMPLEMENT_MAIN()
OSL_ENSURE( xServInfo.is(), "testloader error4");
OSL_ENSURE( xServInfo->getImplementationName() == "com.sun.star.comp.stoc.DLLComponentLoader", "testloader error5");
- OSL_ENSURE( xServInfo->supportsService(OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.loader.SharedLibrary")) ), "testloader error6");
+ OSL_ENSURE( xServInfo->supportsService(OUString( "com.sun.star.loader.SharedLibrary") ), "testloader error6");
OSL_ENSURE( xServInfo->getSupportedServiceNames().getLength() == 1, "testloader error7");
xIFace.clear();