| 2532 | } |
| 2533 | |
| 2534 | void IGFD::FileManager::SelectAllFileNames() { |
| 2535 | m_SelectedFileNames.clear(); |
| 2536 | for (const auto& pInfos : m_FilteredFileList) { |
| 2537 | if (pInfos != nullptr) { |
| 2538 | m_AddFileNameInSelection(pInfos->fileNameExt, true); |
| 2539 | } |
| 2540 | } |
| 2541 | } |
| 2542 | |
| 2543 | void IGFD::FileManager::SelectFileName(const std::shared_ptr<FileInfos>& vInfos) { |
| 2544 | if (!vInfos.use_count()) { |