mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +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),
|
||||
timer(new QTimer(this)),
|
||||
dumpWarningShown(false),
|
||||
currentState(INITIAL),
|
||||
ostcFirmwareCheck(0)
|
||||
ostcFirmwareCheck(0),
|
||||
currentState(INITIAL)
|
||||
{
|
||||
ui.setupUi(this);
|
||||
ui.progressBar->hide();
|
||||
|
|
Loading…
Reference in a new issue