calculate path to config file
| 100 | |
| 101 | // calculate path to config file |
| 102 | QString getConfigFilePath() { |
| 103 | const auto configPath = QStandardPaths::writableLocation(QStandardPaths::ConfigLocation); |
| 104 | const auto configFilePath = configPath + "/appimagelauncher.cfg"; |
| 105 | return configFilePath; |
| 106 | } |
| 107 | |
| 108 | void createConfigFile(int askToMove, |
| 109 | const QString& destination, |
no outgoing calls
no test coverage detected