Check all files to see if any single file has only have one ROC point
| 260 | |
| 261 | //Check all files to see if any single file has only have one ROC point |
| 262 | bool filesHaveSinglePoint(const QStringList &files) { |
| 263 | foreach (const File &file, files) |
| 264 | if (fileHasSinglePoint(file)) |
| 265 | return true; |
| 266 | return false; |
| 267 | } |
| 268 | |
| 269 | // Properly |
| 270 |
no test coverage detected