summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-22 21:44:16 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-22 21:44:16 +0100
commitf512cf5b1bf9e80cb430c1f06fbb7d86feb19ca3 (patch)
treedea314d0c523c9e27c62d3500577946879d3168d /cui
parentdccbd373c9517a917c9d2be5d5abd6640948059a (diff)
Use rtl::isAscii* instead of ctype.h is* with sal_Unicode arg
Change-Id: Ifcc531df2b780e446dd4c2cccf74fa902ab4a259
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/about.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index d1c5986572d3..72a21d78c51c 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -49,7 +49,6 @@
#include <sfx2/app.hxx>
#include <rtl/ustrbuf.hxx>
#include <vcl/bitmap.hxx>
-#include <cctype>
#if HAVE_FEATURE_OPENCL
#include <opencl/openclwrapper.hxx>
@@ -297,7 +296,7 @@ bool AboutDialog::IsStringValidGitHash(const OUString& hash)
{
for (int i = 0; i < hash.getLength(); i++)
{
- if (!std::isxdigit(hash[i]))
+ if (!rtl::isAsciiHexDigit(hash[i]))
{
return false;
}