| 48 | } |
| 49 | |
| 50 | static bool _hasChildren(const char* path) |
| 51 | { |
| 52 | if( Platform::hasSubDirectory(path)) |
| 53 | return true; |
| 54 | |
| 55 | Vector<StringTableEntry> dummy; |
| 56 | Platform::dumpDirectories( path, dummy, 0, true); |
| 57 | |
| 58 | return dummy.size() > 0; |
| 59 | } |
| 60 | |
| 61 | GuiFileTreeCtrl::GuiFileTreeCtrl() |
| 62 | : Parent() |
no test coverage detected