mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Initialize members in the declared order
This closes a compiler warning. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
46f4dbf93d
commit
95461830bb
1 changed files with 2 additions and 2 deletions
|
@ -46,8 +46,8 @@ DownloadFromDCWidget::DownloadFromDCWidget(QWidget *parent, Qt::WindowFlags f) :
|
||||||
productModel(0),
|
productModel(0),
|
||||||
timer(new QTimer(this)),
|
timer(new QTimer(this)),
|
||||||
dumpWarningShown(false),
|
dumpWarningShown(false),
|
||||||
currentState(INITIAL),
|
ostcFirmwareCheck(0),
|
||||||
ostcFirmwareCheck(0)
|
currentState(INITIAL)
|
||||||
{
|
{
|
||||||
ui.setupUi(this);
|
ui.setupUi(this);
|
||||||
ui.progressBar->hide();
|
ui.progressBar->hide();
|
||||||
|
|
Loading…
Add table
Reference in a new issue