summaryrefslogtreecommitdiff
path: root/helpcompiler
diff options
context:
space:
mode:
Diffstat (limited to 'helpcompiler')
-rw-r--r--helpcompiler/inc/HelpCompiler.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/helpcompiler/inc/HelpCompiler.hxx b/helpcompiler/inc/HelpCompiler.hxx
index 78f98a2821e1..1acce8f794a3 100644
--- a/helpcompiler/inc/HelpCompiler.hxx
+++ b/helpcompiler/inc/HelpCompiler.hxx
@@ -39,6 +39,7 @@
#include <libxml/catalog.h>
#include <rtl/ustring.hxx>
+#include <rtl/character.hxx>
#include <osl/thread.h>
#include <osl/process.h>
#include <osl/file.hxx>
@@ -249,7 +250,7 @@ private:
inline char tocharlower(char c)
{
- return static_cast<char>(tolower(c));
+ return static_cast<char>(rtl::toAsciiLowerCase(c));
}
#endif