Kaydet (Commit) 7ac1522d authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix MSVC build

Change-Id: I14f9b8e7b7e2cdcbdc60de17471b1a3a381d83f0
üst 5a4c549d
...@@ -176,7 +176,7 @@ static bool ImplNumericGetValue( const OUString& rStr, sal_Int64& rValue, ...@@ -176,7 +176,7 @@ static bool ImplNumericGetValue( const OUString& rStr, sal_Int64& rValue,
if ( aStr1.isEmpty() ) if ( aStr1.isEmpty() )
aStr1 = "0"; aStr1 = "0";
if ( bNegative ) if ( bNegative )
aStr1 = "-" + aStr1; aStr1.insert(0, "-");
// prune and round fraction // prune and round fraction
bool bRound = false; bool bRound = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment