diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-23 18:39:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-24 15:27:28 +0200 |
commit | 6390d2c52b75b2868d5ee98863a0af4f103c12e5 (patch) | |
tree | ed9f11baf9f45d2de0270eb1a61983fb4a302df9 /sc | |
parent | 3fb56b38c46849569fe2035a3f377a396e2ec8fd (diff) |
Get rid of comphelper::string::is*Ascii functions
Change-Id: I99912112e5b009d7a143f9816d757cdf6ebb1783
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/compiler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx index 125abb417753..764db1f61686 100644 --- a/sc/source/core/tool/compiler.cxx +++ b/sc/source/core/tool/compiler.cxx @@ -2766,7 +2766,7 @@ bool ScCompiler::IsPredetectedReference(const OUString& rName) return false; // :#REF!.AB42 or :#REF!42 or :#REF!#REF! break; default: - if (comphelper::string::isalphaAscii(c) && + if (rtl::isAsciiAlpha(c) && ((mnPredetectedReference > 1 && ':' == c2) || 0 == c2)) return false; // AB#REF!: or AB#REF! } |