Skip to content

Commit

Permalink
Change initialization order
Browse files Browse the repository at this point in the history
  • Loading branch information
varjolintu committed Feb 27, 2018
1 parent 360395d commit e873c4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/browser/BrowserOptionDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
BrowserOptionDialog::BrowserOptionDialog(DatabaseTabWidget* parent) :
QWidget(parent),
m_ui(new Ui::BrowserOptionDialog()),
m_dbTabWidget(parent),
m_customData(new CustomData(this)),
m_customDataModel(new QStandardItemModel(this))
m_customDataModel(new QStandardItemModel(this)),
m_dbTabWidget(parent)
{
m_ui->setupUi(this);
m_ui->removeCustomDataButton->setEnabled(false);
Expand Down

0 comments on commit e873c4d

Please sign in to comment.