You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
controller = newQtAutoUpdater::UpdateController("maintenancetool.exe", qApp); //Updater app name
38
-
controller->setDetailedUpdateInfo(true);
34
+
if(ui->checkBox_showDetailledUpdateInformations->isChecked()) controller->setDetailedUpdateInfo(true); //If checkbox is checked, show detailled update infos
35
+
else controller->setDetailedUpdateInfo(false);
36
+
39
37
updateButton->setController(controller);
40
38
}
41
39
42
40
//Starts update check process
43
41
voidMainWindow::checkUpdate()
44
42
{
43
+
if(ui->checkBox_showDetailledUpdateInformations->isChecked()) controller->setDetailedUpdateInfo(true); //If checkbox is checked, show detailled update infos
44
+
else controller->setDetailedUpdateInfo(false);
45
45
controller->start(QtAutoUpdater::UpdateController::ProgressLevel); //Check for updates. Displays a progress bar when searching
0 commit comments