| 261 | } |
| 262 | |
| 263 | QDir integratedAppImagesDestination() { |
| 264 | auto config = getConfig(); |
| 265 | |
| 266 | if (config == nullptr) |
| 267 | return DEFAULT_INTEGRATION_DESTINATION; |
| 268 | |
| 269 | static const QString keyName("AppImageLauncher/destination"); |
| 270 | if (config->contains(keyName)) |
| 271 | return config->value(keyName).toString(); |
| 272 | |
| 273 | return DEFAULT_INTEGRATION_DESTINATION; |
| 274 | } |
| 275 | |
| 276 | class Mount { |
| 277 | private: |
no test coverage detected