| 1909 | |
| 1910 | |
| 1911 | void FileDialog::NodeToPath(tList<tStringItem>& destPathItems, const TreeNode* node) |
| 1912 | { |
| 1913 | destPathItems.Empty(); |
| 1914 | if (!node) |
| 1915 | return; |
| 1916 | |
| 1917 | while (node) |
| 1918 | { |
| 1919 | destPathItems.Insert(new tStringItem(node->Name)); |
| 1920 | node = node->Parent; |
| 1921 | } |
| 1922 | } |
| 1923 | |
| 1924 | |
| 1925 | void FileDialog::DirToPath(tList<tStringItem>& destPath, const tString& srcdir) |
nothing calls this directly
no outgoing calls
no test coverage detected