diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-01-21 00:18:51 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-01-21 00:18:51 +0100 |
commit | fa14c14dc2ec7aab760190f95cd49b9021f04a6a (patch) | |
tree | 688da6fcce7ba56240de5c46b51cc4818a23ec0f /sal/workben | |
parent | 1a1bf0378692877a7c8dec9c879320fc7b53dd5d (diff) |
Don't replace equalsAscii() with equalsAsciiL() in measure_oustrings.cxx.
Diffstat (limited to 'sal/workben')
-rw-r--r-- | sal/workben/measure_oustrings.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/workben/measure_oustrings.cxx b/sal/workben/measure_oustrings.cxx index 2be85a6917d0..f9ce02bec8bd 100644 --- a/sal/workben/measure_oustrings.cxx +++ b/sal/workben/measure_oustrings.cxx @@ -225,7 +225,7 @@ SAL_IMPLEMENT_MAIN() TIME ( "rtl::OUString::equalsAscii", - sCompare.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("apple")); + sCompare.equalsAscii("apple"); ) //(const sal_Char*, sal_Int32) version has different semantics @@ -260,7 +260,7 @@ SAL_IMPLEMENT_MAIN() TIME ( "rtl::OUString::equalsAscii", - sCompare.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("XXXXXXXXXXXXXXX")); + sCompare.equalsAscii("XXXXXXXXXXXXXXX"); ) //(const sal_Char*, sal_Int32) version has different semantics |