diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-28 01:03:37 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-29 09:56:07 +0100 |
commit | 0ab7b0f6e724a3a5a7eadf79f9efc71e0fc1acf0 (patch) | |
tree | 348ba07f193acf41c16a1d4b2aba1a94e6a8729a /basctl/source | |
parent | 5c3424f471f4683a8bfb6ee774ddb4f20cb17800 (diff) |
tweak for change
Diffstat (limited to 'basctl/source')
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 42aadbfd5bc2..8f348d2d38f7 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -269,7 +269,7 @@ void EditorWindow::RequestHelp( const HelpEvent& rHEvt ) TextPaM aCursor = GetEditView()->GetTextEngine()->GetPaM( aDocPos, sal_False ); TextPaM aStartOfWord; String aWord = GetEditView()->GetTextEngine()->GetWord( aCursor, &aStartOfWord ); - if ( aWord.Len() && !comphelper::string::isAsciiDecimalString(aWord) ) + if ( aWord.Len() && !comphelper::string::isdigitAsciiString(aWord) ) { sal_uInt16 nLastChar =aWord.Len()-1; if ( strchr( cSuffixes, aWord.GetChar( nLastChar ) ) ) |