From 8587319f16851ab7df77465ca14157bb166c3eed Mon Sep 17 00:00:00 2001 From: Joe Taylor <k1jt@arrl.org> Date: Thu, 4 Jun 2015 18:27:36 +0000 Subject: [PATCH] Correct the ordering of initializations. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5526 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- echograph.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/echograph.cpp b/echograph.cpp index 33eff08bb..c18cf9c7c 100644 --- a/echograph.cpp +++ b/echograph.cpp @@ -8,8 +8,8 @@ EchoGraph::EchoGraph(QSettings * settings, QWidget *parent) : QDialog(parent), - ui(new Ui::EchoGraph), - m_settings (settings) + m_settings (settings), + ui(new Ui::EchoGraph) { ui->setupUi(this); this->setWindowFlags(Qt::Dialog);