summaryrefslogtreecommitdiff
path: root/filter/source/filtertracer/filtertracer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/filtertracer/filtertracer.cxx')
-rw-r--r--filter/source/filtertracer/filtertracer.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/filter/source/filtertracer/filtertracer.cxx b/filter/source/filtertracer/filtertracer.cxx
index cfe6d5dfb5ee..72781252dc6e 100644
--- a/filter/source/filtertracer/filtertracer.cxx
+++ b/filter/source/filtertracer/filtertracer.cxx
@@ -116,19 +116,19 @@ void SAL_CALL FilterTracer::initialize( const SEQ( NMSP_UNO::Any )& aArguments )
for ( i = 0; i < aParameter.getLength(); i++ )
{
const NMSP_BEANS::PropertyValue& rProp = aParameter[ i ];
- if ( rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "LogLevel" ) ) )
+ if ( rProp.Name == "LogLevel" )
rProp.Value >>= mnLogLevel;
- else if ( rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ClassFilter" ) ) )
+ else if ( rProp.Name == "ClassFilter" )
rProp.Value >>= msClassFilter;
- else if ( rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "MethodFilter" ) ) )
+ else if ( rProp.Name == "MethodFilter" )
rProp.Value >>= msMethodFilter;
- else if ( rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "MessageFilter" ) ) )
+ else if ( rProp.Name == "MessageFilter" )
rProp.Value >>= msMessageFilter;
- else if ( rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "OutputStream" ) ) )
+ else if ( rProp.Name == "OutputStream" )
rProp.Value >>= mxOutputStream;
- else if ( rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "URL" ) ) )
+ else if ( rProp.Name == "URL" )
rProp.Value >>= msURL;
- else if ( rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "DocumentHandler" ) ) )
+ else if ( rProp.Name == "DocumentHandler" )
rProp.Value >>= mxDocumentHandler;
}