| 2470 | } |
| 2471 | |
| 2472 | void IGFD::FileManager::SelectAllFileNames() { |
| 2473 | m_SelectedFileNames.clear(); |
| 2474 | for (const auto& pInfos : m_FilteredFileList) { |
| 2475 | if (pInfos != nullptr) { |
| 2476 | m_AddFileNameInSelection(pInfos->fileNameExt, true); |
| 2477 | } |
| 2478 | } |
| 2479 | } |
| 2480 | |
| 2481 | void IGFD::FileManager::SelectFileName(const std::shared_ptr<FileInfos>& vInfos) { |
| 2482 | if (!vInfos.use_count()) { |