| 864 | } |
| 865 | |
| 866 | FileExecutionTypes getFileExecutionType(const QFileInfo& target) |
| 867 | { |
| 868 | if (isExeFile(target) || isBatchFile(target) || isJavaFile(target)) { |
| 869 | return FileExecutionTypes::Executable; |
| 870 | } |
| 871 | |
| 872 | return FileExecutionTypes::Other; |
| 873 | } |
| 874 | |
| 875 | FileExecutionContext getFileExecutionContext(QWidget* parent, const QFileInfo& target) |
| 876 | { |
no test coverage detected