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

loplugin:defaultparams

Change-Id: I5a3852f85f20543165e174da9cd9a36da9a3df8d
üst f5ee3b39
...@@ -1265,7 +1265,7 @@ void SbModule::Run( SbMethod* pMeth ) ...@@ -1265,7 +1265,7 @@ void SbModule::Run( SbMethod* pMeth )
bQuit = true; bQuit = true;
if ( bQuit ) if ( bQuit )
{ {
Application::PostUserEvent( LINK( &AsyncQuitHandler::instance(), AsyncQuitHandler, OnAsyncQuit ), NULL ); Application::PostUserEvent( LINK( &AsyncQuitHandler::instance(), AsyncQuitHandler, OnAsyncQuit ) );
} }
} }
......
...@@ -2814,7 +2814,7 @@ void SbiRuntime::StepLOADNC( sal_uInt32 nOp1 ) ...@@ -2814,7 +2814,7 @@ void SbiRuntime::StepLOADNC( sal_uInt32 nOp1 )
{ {
aStr = aStr.replaceAt(iComma, 1, OUString(".")); aStr = aStr.replaceAt(iComma, 1, OUString("."));
} }
double n = ::rtl::math::stringToDouble( aStr, '.', ',', NULL, NULL ); double n = ::rtl::math::stringToDouble( aStr, '.', ',' );
p->PutDouble( n ); p->PutDouble( n );
PushVar( p ); PushVar( p );
......
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