| 52 | } |
| 53 | |
| 54 | QString getLuaDir() |
| 55 | { |
| 56 | QString luadir = QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation) + "/lua"; |
| 57 | QDir dir(luadir); |
| 58 | if (!dir.exists()) |
| 59 | dir.mkpath("."); |
| 60 | return luadir; |
| 61 | } |
| 62 | |
| 63 | uint64_t getScriptHash(QFileInfo finfo) |
| 64 | { |
no outgoing calls
no test coverage detected