diff options
author | Marcos Paulo de Souza <marcos.souza.org@gmail.com> | 2012-12-29 11:15:01 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-12-29 15:35:40 +0000 |
commit | 85f27205f41e7b6e63ea7fa0de9e3cb6a15b9bae (patch) | |
tree | 01872b8daae257fd584c88ace684ed3d87e7f8fe /animations | |
parent | d204c1a47ef7215ca3e1ef198e81d9eeaed2095a (diff) |
Remove last RTL_CONSTASCII_STRINGPARAM from animations
Change-Id: Ib774bc7f70492910a2f3e7ac3088c4e07127b563
Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/1501
Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br>
Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
Diffstat (limited to 'animations')
-rw-r--r-- | animations/source/animcore/targetpropertiescreator.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/animations/source/animcore/targetpropertiescreator.cxx b/animations/source/animcore/targetpropertiescreator.cxx index 4ecdce47bd42..9e9fd27c0cb8 100644 --- a/animations/source/animcore/targetpropertiescreator.cxx +++ b/animations/source/animcore/targetpropertiescreator.cxx @@ -332,7 +332,7 @@ namespace animcore // initially. This is currently the only place // where a shape effect influences shape // attributes outside it's effective duration. - if( xAnimateNode->getAttributeName().equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("visibility")) ) + if( xAnimateNode->getAttributeName().equalsIgnoreAsciiCase("visibility") ) { sal_Bool bVisible( sal_False ); @@ -347,13 +347,13 @@ namespace animcore { // we also take the strings "true" and "false", // as well as "on" and "off" here - if( aString.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("true")) || - aString.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("on")) ) + if( aString.equalsIgnoreAsciiCase("true") || + aString.equalsIgnoreAsciiCase("on") ) { bVisible = sal_True; } - if( aString.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("false")) || - aString.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("off")) ) + if( aString.equalsIgnoreAsciiCase("false") || + aString.equalsIgnoreAsciiCase("off") ) { bVisible = sal_False; } @@ -468,7 +468,7 @@ namespace animcore sal_Bool SAL_CALL TargetPropertiesCreator::supportsService( const OUString& ServiceName ) throw( uno::RuntimeException ) { - return ServiceName.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM(SERVICE_NAME)); + return ServiceName.equalsIgnoreAsciiCase(SERVICE_NAME); } uno::Sequence< OUString > SAL_CALL TargetPropertiesCreator::getSupportedServiceNames() throw( uno::RuntimeException ) |