diff options
| author | Victor Tran <vicr12345@gmail.com> | 2018-12-05 01:56:15 +1100 |
|---|---|---|
| committer | Victor Tran <vicr12345@gmail.com> | 2018-12-05 01:56:15 +1100 |
| commit | d47d30c8dc4ddf2a6bd84162dedb159559cfeacc (patch) | |
| tree | 75e278ee5e8498943c8613f8a5cf435e317a686c /installer/mainwindow.h | |
| parent | 84d2d3998ba64880c9a2736c1bad046176610e68 (diff) | |
| download | theInstaller-d47d30c8dc4ddf2a6bd84162dedb159559cfeacc.tar.gz theInstaller-d47d30c8dc4ddf2a6bd84162dedb159559cfeacc.tar.bz2 theInstaller-d47d30c8dc4ddf2a6bd84162dedb159559cfeacc.zip | |
New flag to update an app
Diffstat (limited to 'installer/mainwindow.h')
| -rw-r--r-- | installer/mainwindow.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/installer/mainwindow.h b/installer/mainwindow.h index fbbeb8b..dec5600 100644 --- a/installer/mainwindow.h +++ b/installer/mainwindow.h @@ -38,6 +38,9 @@ class MainWindow : public QMainWindow explicit MainWindow(QWidget *parent = 0); ~MainWindow(); + public slots: + void setAutoProgress(bool autoProgress); + private slots: void on_installOptions_clicked(); @@ -79,6 +82,7 @@ class MainWindow : public QMainWindow QWinTaskbarButton* taskbarButton; QLocalSocket* sock = nullptr; bool installDone = false; + bool autoProgress = false; LicenseWidget* licenseWidget; QMap<QString, QString> licenses; |
