diff options
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/syntaxhighlight.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/syntaxhighlight.cxx b/comphelper/source/misc/syntaxhighlight.cxx index 9f0eb7dfe862..d1fffbcf5db5 100644 --- a/comphelper/source/misc/syntaxhighlight.cxx +++ b/comphelper/source/misc/syntaxhighlight.cxx @@ -21,9 +21,9 @@ #include <cassert> +#include <rtl/character.hxx> #include <unicode/uchar.h> #include <comphelper/syntaxhighlight.hxx> -#include <comphelper/string.hxx> // Flags for character properties #define CHAR_START_IDENTIFIER 0x0001 @@ -249,7 +249,7 @@ namespace { bool isAlpha(sal_Unicode c) { - if (comphelper::string::isalphaAscii(c)) + if (rtl::isAsciiAlpha(c)) return true; return u_isalpha(c); } |