| 1469 | } |
| 1470 | |
| 1471 | bool ProjectFileManager::ImportWithoutTempoDetection( |
| 1472 | const std::vector<FilePath>& fileNames, bool addToHistory) |
| 1473 | { |
| 1474 | return std::all_of( |
| 1475 | fileNames.begin(), fileNames.end(), [&](const FilePath& fileName) |
| 1476 | { return DoImport(fileName, addToHistory, nullptr); }); |
| 1477 | } |
| 1478 | |
| 1479 | // If pNewTrackList is passed in non-NULL, it gets filled with the pointers to NEW tracks. |
| 1480 | bool ProjectFileManager::DoImport( |