diff options
author | Boris Barbulovski <bbarbulovski@gmail.com> | 2014-02-09 19:38:26 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-09 14:42:07 -0800 |
commit | 18207c9189f34668a8bf9241da17ba57591f61a4 (patch) | |
tree | 2b9dd004e8e4f308b11218306704cc20ffde6aec /qt-ui/downloadfromdivecomputer.cpp | |
parent | d48910b711166548d4106ec7c659f9df7cb8ca99 (diff) | |
download | subsurface-18207c9189f34668a8bf9241da17ba57591f61a4.tar.gz |
downloadfromdivecomputer.cpp improvements
* Add missing variable members to the initializer lists.
Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/downloadfromdivecomputer.cpp')
-rw-r--r-- | qt-ui/downloadfromdivecomputer.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/qt-ui/downloadfromdivecomputer.cpp b/qt-ui/downloadfromdivecomputer.cpp index 3148a566c..3a6cb4237 100644 --- a/qt-ui/downloadfromdivecomputer.cpp +++ b/qt-ui/downloadfromdivecomputer.cpp @@ -36,9 +36,15 @@ namespace DownloadFromDcGlobal { const char *err_string; }; -DownloadFromDCWidget::DownloadFromDCWidget(QWidget* parent, Qt::WindowFlags f) : - QDialog(parent, f), thread(0), timer(new QTimer(this)), - dumpWarningShown(false), currentState(INITIAL) +DownloadFromDCWidget::DownloadFromDCWidget(QWidget* parent, Qt::WindowFlags f) : QDialog(parent, f), + thread(0), + downloading(false), + previousLast(0), + vendorModel(0), + productModel(0), + timer(new QTimer(this)), + dumpWarningShown(false), + currentState(INITIAL) { ui.setupUi(this); ui.progressBar->hide(); |