diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/generic/bigint.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx index cf0df72b08d4..fd21f55a8270 100644 --- a/tools/source/generic/bigint.cxx +++ b/tools/source/generic/bigint.cxx @@ -507,7 +507,7 @@ BigInt::BigInt( const OUString& rString ) p++; } if ( bIsBig ) - bIsNeg = bNeg ? sal_True : sal_False; + bIsNeg = bNeg ? true : false; else if( bNeg ) nVal = -nVal; } |