From 1fcd8dfb70124acc935c24e066dfd3e2144baec9 Mon Sep 17 00:00:00 2001 From: Krishna Keshav Date: Thu, 5 May 2016 23:28:29 +0530 Subject: tdf#99589 tolower / toupper - dangerous to Turks ... replaced tolower with to AsciiLowerCase() in lingucomponent/source/languageguessing/altstrfunc.cxx l10ntools/source/gL10nMem.cxx Change-Id: I1340da18b263a4a921e2e8d96c0f133fe300086e Reviewed-on: https://gerrit.libreoffice.org/24682 Tested-by: Jenkins Reviewed-by: Michael Meeks --- l10ntools/source/gL10nMem.cxx | 3 ++- lingucomponent/source/languageguessing/altstrfunc.cxx | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/l10ntools/source/gL10nMem.cxx b/l10ntools/source/gL10nMem.cxx index 62c924a90329..26621217a99f 100644 --- a/l10ntools/source/gL10nMem.cxx +++ b/l10ntools/source/gL10nMem.cxx @@ -21,6 +21,7 @@ #include #include #include +#include using namespace std; #include "gL10nMem.hxx" @@ -977,6 +978,6 @@ void l10nMem::keyToLower(string& sKey) if (ch == ' ' || ch == '*' || ch == '+' || ch == '%') sKey[i] = '_'; else - sKey[i] = tolower(ch); + sKey[i] = toAsciiLowerCase(ch); } } diff --git a/lingucomponent/source/languageguessing/altstrfunc.cxx b/lingucomponent/source/languageguessing/altstrfunc.cxx index 1fb29436c624..a155ee026885 100644 --- a/lingucomponent/source/languageguessing/altstrfunc.cxx +++ b/lingucomponent/source/languageguessing/altstrfunc.cxx @@ -20,6 +20,9 @@ #include "altstrfunc.hxx" #include +#include + +using namespace rtl; int start(const std::string &s1, const std::string &s2){ size_t i; @@ -30,7 +33,7 @@ int start(const std::string &s1, const std::string &s2){ min = s2.length(); for(i = 0; i < min && s2[i] && s1[i] && !ret; i++){ - ret = toupper(s1[i]) - toupper(s2[i]); + ret = toAsciiUpperCase(s1[i]) - toAsciiUpperCase(s2[i]); if(s1[i] == '.' || s2[i] == '.'){ret = 0;}//. is a neutral character } return ret; -- cgit stro/collabora/cd-5.3-3.1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2017-09-26iOS, build instructions.jan Iversen