mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +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;
|
const char *err_string;
|
||||||
};
|
};
|
||||||
|
|
||||||
DownloadFromDCWidget::DownloadFromDCWidget(QWidget* parent, Qt::WindowFlags f) :
|
DownloadFromDCWidget::DownloadFromDCWidget(QWidget* parent, Qt::WindowFlags f) : QDialog(parent, f),
|
||||||
QDialog(parent, f), thread(0), timer(new QTimer(this)),
|
thread(0),
|
||||||
dumpWarningShown(false), currentState(INITIAL)
|
downloading(false),
|
||||||
|
previousLast(0),
|
||||||
|
vendorModel(0),
|
||||||
|
productModel(0),
|
||||||
|
timer(new QTimer(this)),
|
||||||
|
dumpWarningShown(false),
|
||||||
|
currentState(INITIAL)
|
||||||
{
|
{
|
||||||
ui.setupUi(this);
|
ui.setupUi(this);
|
||||||
ui.progressBar->hide();
|
ui.progressBar->hide();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue