diff options
author | Oliver Specht <os@openoffice.org> | 2002-10-11 11:18:21 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2002-10-11 11:18:21 +0000 |
commit | 6e576d2592dd1557ce1fbab80e46c8d918ee2784 (patch) | |
tree | c5e7bf2ad49f0b90ac110169b9be07614fae29f3 /sw | |
parent | 10e0ba3785194b537824cf240bb3d1f0b4a44a3b (diff) |
#104121# to compare references CharClass::isAsciiNumeric has to be used instead of ::isNumeric
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/fields/expfld.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/fields/expfld.cxx b/sw/source/core/fields/expfld.cxx index 3222d06186ef..113b07761574 100644 --- a/sw/source/core/fields/expfld.cxx +++ b/sw/source/core/fields/expfld.cxx @@ -2,9 +2,9 @@ * * $RCSfile: expfld.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: mba $ $Date: 2002-05-27 14:32:25 $ + * last change: $Author: os $ $Date: 2002-10-11 12:18:21 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -823,7 +823,7 @@ BOOL SwSeqFldList::SeekEntry( const _SeqFldLstElem& rNew, USHORT* pP ) const String& rTmp2 = rNew.sDlgEntry; xub_StrLen nFndPos2 = 0; String sNum2( rTmp2.GetToken( 0, ' ', nFndPos2 )); - BOOL bIsNum2IsNumeric = rCC.isNumeric( sNum2 ); + BOOL bIsNum2IsNumeric = rCC.isAsciiNumeric( sNum2 ); sal_Int32 nNum2 = bIsNum2IsNumeric ? sNum2.ToInt32() : 0; nO--; |