diff options
-rw-r--r-- | cppuhelper/source/factory.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/factory.cxx b/cppuhelper/source/factory.cxx index 29100b60e70d..e288dad52fbd 100644 --- a/cppuhelper/source/factory.cxx +++ b/cppuhelper/source/factory.cxx @@ -790,9 +790,9 @@ Reference< XInterface > ORegistryFactoryHelper::createModuleFactory() if( nPos != -1 ) { aActivatorName = aLocation.copy( 0, nPos ); - if( aActivatorName.equalsAscii( "java" ) ) + if( aActivatorName == "java" ) aActivatorName = "com.sun.star.loader.Java"; - else if( aActivatorName.equalsAscii( "module" ) ) + else if( aActivatorName == "module" ) aActivatorName = "com.sun.star.loader.SharedLibrary"; aLocation = aLocation.copy( nPos + 3 ); } |