mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
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:
parent
31854f50a4
commit
a35a28ab38
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue