mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 22:33:24 +00:00
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>
This commit is contained in:
parent
d48910b711
commit
18207c9189
1 changed files with 9 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue