| 84 | } |
| 85 | |
| 86 | static void _dumpFiles(const char *path, Vector<StringTableEntry> &directoryVector, S32 depth = 0) |
| 87 | { |
| 88 | Vector<Platform::FileInfo> fileVec; |
| 89 | Platform::dumpPath( path, fileVec, depth); |
| 90 | |
| 91 | for(U32 i = 0; i < fileVec.size(); i++) |
| 92 | { |
| 93 | directoryVector.push_back( StringTable->insert(fileVec[i].pFileName) ); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | void GuiFileTreeCtrl::updateTree() |
| 98 | { |
no test coverage detected