summaryrefslogtreecommitdiff
path: root/i18npool/source/characterclassification/cclass_unicode_parser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18npool/source/characterclassification/cclass_unicode_parser.cxx')
-rw-r--r--i18npool/source/characterclassification/cclass_unicode_parser.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/i18npool/source/characterclassification/cclass_unicode_parser.cxx b/i18npool/source/characterclassification/cclass_unicode_parser.cxx
index 593c4822d4fc..7321a7e5f19b 100644
--- a/i18npool/source/characterclassification/cclass_unicode_parser.cxx
+++ b/i18npool/source/characterclassification/cclass_unicode_parser.cxx
@@ -340,14 +340,14 @@ const sal_Int32 cclass_Unicode::pParseTokensType[ nDefCnt ] =
const sal_Unicode* cclass_Unicode::StrChr( const sal_Unicode* pStr, sal_Unicode c )
{
if ( !pStr )
- return NULL;
+ return nullptr;
while ( *pStr )
{
if ( *pStr == c )
return pStr;
pStr++;
}
- return NULL;
+ return nullptr;
}
@@ -438,12 +438,12 @@ void cclass_Unicode::initParserTable( const Locale& rLocale, sal_Int32 startChar
if ( pStart && userDefinedCharactersStart.getLength() != aStartChars.getLength() )
{
delete [] pStart;
- pStart = NULL;
+ pStart = nullptr;
}
if ( pCont && userDefinedCharactersCont.getLength() != aContChars.getLength() )
{
delete [] pCont;
- pCont = NULL;
+ pCont = nullptr;
}
nStartTypes = startCharTokenType;
nContTypes = contCharTokenType;
@@ -1011,7 +1011,7 @@ void cclass_Unicode::parseText( ParseResult& r, const OUString& rText, sal_Int32
if ( r.TokenType & KParseType::ASC_NUMBER )
{
r.Value = rtl_math_uStringToDouble( pTextStart + r.LeadingWhiteSpace,
- pTextStart + r.EndPos, cDecimalSep, cGroupSep, NULL, NULL );
+ pTextStart + r.EndPos, cDecimalSep, cGroupSep, nullptr, nullptr );
if ( bMightBeWord )
r.TokenType |= KParseType::IDENTNAME;
}