summaryrefslogtreecommitdiff
path: root/helpcompiler
diff options
context:
space:
mode:
Diffstat (limited to 'helpcompiler')
-rw-r--r--helpcompiler/source/HelpCompiler.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/helpcompiler/source/HelpCompiler.cxx b/helpcompiler/source/HelpCompiler.cxx
index 91458e09e057..4f391b64017f 100644
--- a/helpcompiler/source/HelpCompiler.cxx
+++ b/helpcompiler/source/HelpCompiler.cxx
@@ -29,6 +29,7 @@
#include <libxslt/xsltutils.h>
#include <osl/thread.hxx>
#include <chrono>
+#include<rtl/character.hxx>
static void impl_sleep( sal_uInt32 nSec )
{
@@ -462,7 +463,7 @@ bool HelpCompiler::compile()
std::string appl = module.substr(1);
for (char & i : appl)
{
- i=toupper(i);
+ i=rtl::toAsciiUpperCase(i);
}
xmlNodePtr docResolved = clone(xmlDocGetRootElement(docResolvedOrg), appl);
myparser aparser(documentId, fileName, title);