| 154 | } |
| 155 | |
| 156 | QStringList toQStringList(const std::vector<std::string> &stringVec) |
| 157 | { |
| 158 | QStringList list; |
| 159 | for (const auto &s : stringVec) |
| 160 | list.append(QString::fromStdString(s)); |
| 161 | return list; |
| 162 | } |
| 163 | |
| 164 | std::string toLower(std::string str) |
| 165 | { |
no test coverage detected