summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-10-30 21:20:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-11-01 09:27:24 +0000
commit76e37b7f798a211a9a3f3110f30d65a2c93dba4b (patch)
treea4ca0978f6e33db5740c305908c78a5b1621b386 /sal
parentfef11229e6231814a9d5aa9227b17fbac4878731 (diff)
adapt naming scheme
Diffstat (limited to 'sal')
-rw-r--r--sal/inc/rtl/string.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sal/inc/rtl/string.hxx b/sal/inc/rtl/string.hxx
index 23fee9d7674e..ee4101188013 100644
--- a/sal/inc/rtl/string.hxx
+++ b/sal/inc/rtl/string.hxx
@@ -414,10 +414,9 @@ public:
@return sal_True if the strings are equal;
sal_False, otherwise.
*/
- sal_Bool equalsIgnoreAsciiCaseAscii( const sal_Char * asciiStr ) const SAL_THROW(())
+ sal_Bool equalsIgnoreAsciiCase( const sal_Char * asciiStr ) const SAL_THROW(())
{
- return rtl_str_compareIgnoreAsciiCase_WithLength( pData->buffer, pData->length,
- asciiStr, rtl_str_getLength(asciiStr) ) == 0;
+ return rtl_str_compareIgnoreAsciiCase( pData->buffer, asciiStr ) == 0;
}
/**
@@ -439,7 +438,7 @@ public:
@return sal_True if the strings are equal;
sal_False, otherwise.
*/
- sal_Bool equalsIgnoreAsciiCaseAsciiL( const sal_Char * asciiStr, sal_Int32 asciiStrLength ) const SAL_THROW(())
+ sal_Bool equalsIgnoreAsciiCaseL( const sal_Char * asciiStr, sal_Int32 asciiStrLength ) const SAL_THROW(())
{
if ( pData->length != asciiStrLength )
return sal_False;