summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--basic/source/comp/symtbl.cxx3
-rw-r--r--helpcompiler/source/HelpCompiler.cxx3
2 files changed, 4 insertions, 2 deletions
diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx
index 94f1be350434..f7e6016aa6b1 100644
--- a/basic/source/comp/symtbl.cxx
+++ b/basic/source/comp/symtbl.cxx
@@ -25,6 +25,7 @@
#include <stdio.h>
#include <string.h>
#include <ctype.h>
+#include <rtl/character.hxx>
// All symbol names are laid down int the symbol-pool's stringpool, so that
// all symbols are handled in the same case. On saving the code-image, the
@@ -326,7 +327,7 @@ void SbiSymDef::SetType( SbxDataType t )
{
ch = 'Z';
}
- int ch2 = toupper( ch );
+ int ch2 = rtl::toAsciiUpperCase( ch );
int nIndex = ch2 - 'A';
if (nIndex >= 0 && nIndex < N_DEF_TYPES)
t = pIn->pParser->eDefTypes[nIndex];
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);