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
This commit is contained in:
Joe Taylor 2015-06-04 18:27:36 +00:00
parent e8fd6bb3ab
commit b57298e625

View File

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