| 56 | } |
| 57 | |
| 58 | bool canRunFile(bool isArchive, const QString& filename) |
| 59 | { |
| 60 | // can run executables that are not archives |
| 61 | return !isArchive && isExecutableFilename(filename); |
| 62 | } |
| 63 | |
| 64 | bool canOpenFile(bool isArchive, const QString& filename) |
| 65 | { |
nothing calls this directly
no test coverage detected