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:
Anton Lundin 2014-12-30 00:25:54 +01:00 committed by Dirk Hohndel
parent 46f4dbf93d
commit 95461830bb

View file

@ -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();