summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@libreoffice.org>2013-08-10 12:41:03 +0200
committerPetr Mladek <pmladek@suse.cz>2013-08-19 15:49:18 +0000
commitc8e39e66528affb66f1ae121fa36dd4ab31a9b0b (patch)
tree227691ebad802e87695bfffb96889a1ccfe147a4 /sw
parent2e45813b7e5757bc050e121acfe942763b9544ff (diff)
Introduce rtl::compareIgnoreCase and deprecate rtl/character.hxx equivalents.
Change-Id: Id90935fd2b0f904f89477792edc8140cfc31e91f Reviewed-on: https://gerrit.libreoffice.org/5412 Reviewed-by: Petr Mladek <pmladek@suse.cz> Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/unocore/XMLRangeHelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/unocore/XMLRangeHelper.cxx b/sw/source/core/unocore/XMLRangeHelper.cxx
index 471a0c3cc583..372074866fe0 100644
--- a/sw/source/core/unocore/XMLRangeHelper.cxx
+++ b/sw/source/core/unocore/XMLRangeHelper.cxx
@@ -125,7 +125,7 @@ void lcl_getSingleCellAddressFromXMLString(
sal_Int32 i = nLength - 1, nColumn = 0;
// parse number for row
- while( CharClass::isAsciiDigit( pStrArray[ i ] ) && i >= 0 )
+ while( rtl::isAsciiDigit( pStrArray[ i ] ) && i >= 0 )
i--;
rOutCell.nRow = (aCellStr.copy( i + 1 )).toInt32() - 1;
// a dollar in XML means absolute (whereas in UI it means relative)
@@ -139,7 +139,7 @@ void lcl_getSingleCellAddressFromXMLString(
// parse rest for column
sal_Int32 nPower = 1;
- while( CharClass::isAsciiAlpha( pStrArray[ i ] ))
+ while( rtl::isAsciiAlpha( pStrArray[ i ] ))
{
nColumn += (pStrArray[ i ] - aLetterA + 1) * nPower;
i--;