| 2718 | } |
| 2719 | |
| 2720 | std::string IGFD::FileManager::GetResultingFileName(FileDialogInternal& vFileDialogInternal, IGFD_ResultMode vFlag) { |
| 2721 | if (!dLGDirectoryMode) { // if not directory mode |
| 2722 | const auto& filename = std::string(fileNameBuffer); |
| 2723 | return vFileDialogInternal.filterManager.ReplaceExtentionWithCurrentFilterIfNeeded(filename, vFlag); |
| 2724 | } |
| 2725 | return ""; // directory mode |
| 2726 | } |
| 2727 | |
| 2728 | std::string IGFD::FileManager::GetResultingFilePathName(FileDialogInternal& vFileDialogInternal, IGFD_ResultMode vFlag) { |
| 2729 | if (!dLGDirectoryMode) { // if not directory mode |
no test coverage detected