summaryrefslogtreecommitdiffstats
path: root/qt-ui/downloadfromdivecomputer.cpp
diff options
context:
space:
mode:
authorGravatar Boris Barbulovski <bbarbulovski@gmail.com>2014-02-09 19:38:26 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-09 14:42:07 -0800
commit18207c9189f34668a8bf9241da17ba57591f61a4 (patch)
tree2b9dd004e8e4f308b11218306704cc20ffde6aec /qt-ui/downloadfromdivecomputer.cpp
parentd48910b711166548d4106ec7c659f9df7cb8ca99 (diff)
downloadsubsurface-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.cpp12
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();