summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-28 00:17:42 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-29 09:56:06 +0100
commit14d2a60053e30dcb7e6956637fe8d57d18563e3f (patch)
treea395e8185afde2031fa255094ee9b0d23f11afe9 /basic
parent65302eb1bed16db8f06cbb048d03ba6d644b3fb6 (diff)
remove ByteString::IsAlphaNumericAscii and refactor a bit
Diffstat (limited to 'basic')
-rw-r--r--basic/source/app/app.cxx2
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() ) );
}