| 303 | } |
| 304 | |
| 305 | QString Options::getInputFilesAsString() |
| 306 | { |
| 307 | // All files |
| 308 | QStringList filesToOpen = _inputFiles; |
| 309 | filesToOpen.removeAll(""); |
| 310 | QString str = filesToOpen.join('|'); |
| 311 | |
| 312 | // Possible add the player options |
| 313 | if (_playerOptions != nullptr) |
| 314 | str += "||" + _playerOptions->toString(); |
| 315 | |
| 316 | return str; |
| 317 | } |
no test coverage detected