diff options
-rw-r--r-- | chart2/source/tools/XMLRangeHelper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/tools/XMLRangeHelper.cxx b/chart2/source/tools/XMLRangeHelper.cxx index 1f11eedb96a1..227b3e0c2b46 100644 --- a/chart2/source/tools/XMLRangeHelper.cxx +++ b/chart2/source/tools/XMLRangeHelper.cxx @@ -117,7 +117,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) @@ -131,7 +131,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--; |