diff options
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/app/app.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/app/app.cxx b/basic/source/app/app.cxx index 392d2465f662..de61a3ee7185 100644 --- a/basic/source/app/app.cxx +++ b/basic/source/app/app.cxx @@ -375,7 +375,7 @@ IMPL_LINK( BasicApp, LateInit, void *, pDummy ) { if ( (i+1) < Application::GetCommandLineParamCount() ) { - if ( comphelper::string::isAsciiDecimalString(Application::GetCommandLineParam(i+1)) ) + if ( comphelper::string::isdigitAsciiString(Application::GetCommandLineParam(i+1)) ) { MsgEdit::SetMaxLogLen( sal::static_int_cast< sal_uInt16 >( Application::GetCommandLineParam( i+1 ).ToInt32() ) ); } |