From a35a28ab389c1ef8d680bb736697224b029ce8c9 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Fri, 27 Dec 2013 11:07:59 -0800 Subject: [PATCH] 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 --- qt-ui/downloadfromdivecomputer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt-ui/downloadfromdivecomputer.cpp b/qt-ui/downloadfromdivecomputer.cpp index b7eb520c4..b9eee912a 100644 --- a/qt-ui/downloadfromdivecomputer.cpp +++ b/qt-ui/downloadfromdivecomputer.cpp @@ -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();