diff options
-rw-r--r-- | svx/source/table/cell.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx index c3e010d837a0..d6cbac4a9d36 100644 --- a/svx/source/table/cell.cxx +++ b/svx/source/table/cell.cxx @@ -754,10 +754,10 @@ OUString SAL_CALL Cell::getImplementationName( ) throw (RuntimeException) sal_Bool SAL_CALL Cell::supportsService( const OUString& ServiceName ) throw (RuntimeException) { - if( ServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "com.sun.star.table.cell" ) ) == 0 ) + if( ServiceName == "com.sun.star.table.cell" ) return sal_True; - if( ServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "com.sun.star.drawing.cell" ) ) == 0 ) + if( ServiceName == "com.sun.star.drawing.cell" ) return sal_True; return SvxUnoTextBase::supportsService( ServiceName ); |