Kaydet (Commit) 14544da2 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:cstylecast

Change-Id: I6ec274c6c546f60c23fe639002d751f0a9f11d33
üst bfbde8b4
...@@ -398,7 +398,7 @@ OUString OResultSet::makeNumericString(const sal_Int32 nColumnIndex) ...@@ -398,7 +398,7 @@ OUString OResultSet::makeNumericString(const sal_Int32 nColumnIndex)
nAllDigits = -nAllDigits; // abs nAllDigits = -nAllDigits; // abs
} }
sRetBuffer.append((sal_Int64) (nAllDigits / nDecimalCountExp) ); sRetBuffer.append(static_cast<sal_Int64>(nAllDigits / nDecimalCountExp) );
if( nDecimalCount > 0) if( nDecimalCount > 0)
{ {
sRetBuffer.append('.'); sRetBuffer.append('.');
......
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