diff options
| author | Victor Tran <vicr12345@gmail.com> | 2018-07-13 14:55:07 +1000 |
|---|---|---|
| committer | Victor Tran <vicr12345@gmail.com> | 2018-07-13 14:55:07 +1000 |
| commit | e8ca150c38478cfd4a762dccd3da1752ee19ab29 (patch) | |
| tree | 57038a26154d95206940fadc3e823f8038b70c11 /installer/mainwindow.cpp | |
| parent | abc4021919f406ee25e101122144879f8770d51d (diff) | |
| download | theInstaller-e8ca150c38478cfd4a762dccd3da1752ee19ab29.tar.gz theInstaller-e8ca150c38478cfd4a762dccd3da1752ee19ab29.tar.bz2 theInstaller-e8ca150c38478cfd4a762dccd3da1752ee19ab29.zip | |
Add/Remove Programs support
Diffstat (limited to 'installer/mainwindow.cpp')
| -rw-r--r-- | installer/mainwindow.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/installer/mainwindow.cpp b/installer/mainwindow.cpp index bf52e34..b02c45f 100644 --- a/installer/mainwindow.cpp +++ b/installer/mainwindow.cpp @@ -154,6 +154,9 @@ void MainWindow::on_installButton_clicked() ui->stack->setCurrentIndex(5); taskbarButton->progress()->setVisible(false); + } else if (parts.at(0) == "ALERT") { + parts.takeFirst(); + QMessageBox::warning(this, tr("Warning"), parts.join(" "), QMessageBox::Ok, QMessageBox::Ok); } } }); |
