Fix MSVC build

Change-Id: I14f9b8e7b7e2cdcbdc60de17471b1a3a381d83f0
This commit is contained in:
Stephan Bergmann 2014-12-18 21:42:31 +01:00
parent 5a4c549d32
commit 7ac1522d9e

View File

@ -176,7 +176,7 @@ static bool ImplNumericGetValue( const OUString& rStr, sal_Int64& rValue,
if ( aStr1.isEmpty() )
aStr1 = "0";
if ( bNegative )
aStr1 = "-" + aStr1;
aStr1.insert(0, "-");
// prune and round fraction
bool bRound = false;