summaryrefslogtreecommitdiff
path: root/sax/source/fastparser/facreg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sax/source/fastparser/facreg.cxx')
-rw-r--r--sax/source/fastparser/facreg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sax/source/fastparser/facreg.cxx b/sax/source/fastparser/facreg.cxx
index 35db3e14ae18..308268455443 100644
--- a/sax/source/fastparser/facreg.cxx
+++ b/sax/source/fastparser/facreg.cxx
@@ -52,13 +52,13 @@ SAL_DLLPUBLIC_EXPORT void * SAL_CALL fastsax_component_getFactory(
OUString aImplementationName( OUString::createFromAscii( pImplName ) );
- if (aImplementationName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( PARSER_IMPLEMENTATION_NAME ) ) )
+ if ( aImplementationName == PARSER_IMPLEMENTATION_NAME )
{
xRet = createSingleFactory( xSMgr, aImplementationName,
FastSaxParser_CreateInstance,
FastSaxParser::getSupportedServiceNames_Static() );
}
- else if (aImplementationName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( SERIALIZER_IMPLEMENTATION_NAME ) ) )
+ else if ( aImplementationName == SERIALIZER_IMPLEMENTATION_NAME )
{
xRet = createSingleFactory( xSMgr, aImplementationName,
FastSaxSerializer_CreateInstance,