| 216 | if(fi.isAbsolute()) |
| 217 | return LoadPlugin(szPath); |
| 218 | foreach (auto d, lstPaths) { |
| 219 | if(d.isEmpty()) continue; |
| 220 | QString szFile = d + QDir::separator() + szPath; |
| 221 | return LoadPlugin(szFile); |
| 222 | } |
| 223 | return -1; |
| 224 | }); |
| 225 | return 0; |
no test coverage detected