diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-20 11:45:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-20 11:45:49 +0200 |
commit | 1cc2712fc604aff0db5262f2cdff7c3bb2bd74a6 (patch) | |
tree | d9d1ebc5efb786ab5b96217826e0f52d96c5d7a2 /i18npool | |
parent | d85f4558d16a27dbcb547e006e0617d6daceeb09 (diff) |
loplugin:defaultparams
Change-Id: I7cb0b7137c71c3112d50e12245dcfbc59c84a47e
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/characterclassification/cclass_unicode_parser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/source/characterclassification/cclass_unicode_parser.cxx b/i18npool/source/characterclassification/cclass_unicode_parser.cxx index 08c127e4c940..593c4822d4fc 100644 --- a/i18npool/source/characterclassification/cclass_unicode_parser.cxx +++ b/i18npool/source/characterclassification/cclass_unicode_parser.cxx @@ -1029,7 +1029,7 @@ void cclass_Unicode::parseText( ParseResult& r, const OUString& rText, sal_Int32 // transliterate to ASCII aTmp = xNatNumSup->getNativeNumberString( aTmp, aParserLocale, NativeNumberMode::NATNUM0 ); - r.Value = ::rtl::math::stringToDouble( aTmp, cDecimalSep, cGroupSep, NULL, NULL ); + r.Value = ::rtl::math::stringToDouble( aTmp, cDecimalSep, cGroupSep ); if ( bMightBeWord ) r.TokenType |= KParseType::IDENTNAME; } |