| 62 | } |
| 63 | |
| 64 | bool canOpenFile(bool isArchive, const QString& filename) |
| 65 | { |
| 66 | // can open non-executables that are not archives |
| 67 | return !isArchive && !isExecutableFilename(filename); |
| 68 | } |
| 69 | |
| 70 | bool canExploreFile(bool isArchive, const QString&) |
| 71 | { |
nothing calls this directly
no test coverage detected