| 903 | m_previewLoaderRunning = false; |
| 904 | } |
| 905 | void FileDialog::m_clearTree(FileTreeNode* node) |
| 906 | { |
| 907 | if (node == nullptr) |
| 908 | return; |
| 909 | |
| 910 | for (auto n : node->Children) |
| 911 | m_clearTree(n); |
| 912 | |
| 913 | delete node; |
| 914 | node = nullptr; |
| 915 | } |
| 916 | void FileDialog::m_setDirectory(const std::filesystem::path& p, bool addHistory) |
| 917 | { |
| 918 | bool isSameDir = m_currentDirectory == p; |
nothing calls this directly
no outgoing calls
no test coverage detected