From 6390d2c52b75b2868d5ee98863a0af4f103c12e5 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 23 Jun 2015 18:39:30 +0200 Subject: Get rid of comphelper::string::is*Ascii functions Change-Id: I99912112e5b009d7a143f9816d757cdf6ebb1783 --- comphelper/source/misc/syntaxhighlight.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'comphelper') 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 +#include #include #include -#include // 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); } -- cgit