loplugin:defaultparams

Change-Id: I7cb0b7137c71c3112d50e12245dcfbc59c84a47e
This commit is contained in:
Stephan Bergmann
2015-10-20 11:45:49 +02:00
parent d85f4558d1
commit 1cc2712fc6

View File

@@ -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;
}