utils: split: Rename all splitBy*() variants to split()

This commit is contained in:
2021-04-17 12:41:22 +02:00
rodzic b995362d1f
commit 4dc688f9eb
5 zmienionych plików z 13 dodań i 11 usunięć

Wyświetl plik

@ -159,7 +159,7 @@ std::vector<std::string> PageDaoSqlite::fetchCategories(std::string pagename, Qu
std::string PageDaoSqlite::ftsEscape(std::string input)
{
std::string result = "";
for(auto &str : utils::splitByChar(input, ' '))
for(auto &str : utils::split(input, ' '))
{
std::string tmp = utils::strreplace(str, "\"", "\"\"");
tmp = "\"" + tmp + "\"" + " ";