| 1976 | } |
| 1977 | |
| 1978 | void MainWindow::checkForUpdates() |
| 1979 | { |
| 1980 | if(BuildConfig.UPDATER_ENABLED) |
| 1981 | { |
| 1982 | auto updater = APPLICATION->updateChecker(); |
| 1983 | updater->checkForUpdate(APPLICATION->settings()->get("UpdateChannel").toString(), true); |
| 1984 | } |
| 1985 | else |
| 1986 | { |
| 1987 | qWarning() << "Updater not set up. Cannot check for updates."; |
| 1988 | } |
| 1989 | } |
| 1990 | |
| 1991 | void MainWindow::on_actionSettings_triggered() |
| 1992 | { |
no test coverage detected