Fix warning about initialization ordering

I cannot tell what the potential impact of this might be, but the fix is
trivial.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2013-12-27 11:07:59 -08:00
parent 31854f50a4
commit a35a28ab38

View file

@ -45,7 +45,7 @@ DownloadFromDCWidget *DownloadFromDCWidget::instance()
DownloadFromDCWidget::DownloadFromDCWidget(QWidget* parent, Qt::WindowFlags f) :
QDialog(parent, f), thread(0), timer(new QTimer(this)),
currentState(INITIAL), dumpWarningShown(false)
dumpWarningShown(false), currentState(INITIAL)
{
ui.setupUi(this);
ui.progressBar->hide();