mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
fix for linux
This commit is contained in:
parent
515d4d18df
commit
4ccf6891e6
@ -300,7 +300,15 @@ std::string Mnemonic::getCompleteWordListSorted()
|
|||||||
words.sort(compare_nocase);
|
words.sort(compare_nocase);
|
||||||
|
|
||||||
//std::string toReplaced[] = { "auml", "ouml", "uuml", "Auml", "Ouml", "Uuml", "szlig" };
|
//std::string toReplaced[] = { "auml", "ouml", "uuml", "Auml", "Ouml", "Uuml", "szlig" };
|
||||||
Poco::RegularExpression toReplaced[] = { "ä", "ö", "ü", "Ä", "Ö", "Ü", "ß" };
|
Poco::RegularExpression toReplaced[] = {
|
||||||
|
std::string("ä"),
|
||||||
|
std::string("ö"),
|
||||||
|
std::string("ü"),
|
||||||
|
std::string("Ä"),
|
||||||
|
std::string("Ö"),
|
||||||
|
std::string("Uuml;"),
|
||||||
|
std::string("ß")
|
||||||
|
};
|
||||||
std::string replaceStrings[] = { "ä", "ö", "ü", "Ä", "Ö", "Ü", "ß" };
|
std::string replaceStrings[] = { "ä", "ö", "ü", "Ä", "Ö", "Ü", "ß" };
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for(auto it = words.begin(); it != words.end(); it++) {
|
for(auto it = words.begin(); it != words.end(); it++) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user