| 97 | QString QiInterpreter::makePath() |
| 98 | { |
| 99 | QString p; |
| 100 | for (const auto& i : path) p += i + QString(" / "); |
| 101 | if (p.size() > 3) return p.mid(0, p.size() - 3); |
| 102 | return p; |
| 103 | } |
| 104 | |
| 105 | std::string QiInterpreter::errPath() |
nothing calls this directly
no outgoing calls
no test coverage detected