diff options
author | Thiago Macieira <thiago@macieira.org> | 2013-10-03 11:54:25 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-03 12:13:48 -0700 |
commit | 8e81d3f10087fa7ac600dcb18cfebf27716c4209 (patch) | |
tree | 3f6fc136134fe7d4f14937617c29e380e7c6e124 /qt-ui/simplewidgets.cpp | |
parent | f0f76056ac3982783ab3dfe94d77ba5d25e19957 (diff) | |
download | subsurface-8e81d3f10087fa7ac600dcb18cfebf27716c4209.tar.gz |
Make the classes generated by uic be real members of our classes
This means we don't have to new/delete them, which is a waste of
overhead.
Signed-off-by: Thiago Macieira <thiago@macieira.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/simplewidgets.cpp')
-rw-r--r-- | qt-ui/simplewidgets.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qt-ui/simplewidgets.cpp b/qt-ui/simplewidgets.cpp index 5b6c7a886..1da090fdd 100644 --- a/qt-ui/simplewidgets.cpp +++ b/qt-ui/simplewidgets.cpp @@ -108,16 +108,16 @@ RenumberDialog* RenumberDialog::instance() void RenumberDialog::buttonClicked(QAbstractButton* button) { - if (ui->buttonBox->buttonRole(button) == QDialogButtonBox::AcceptRole){ + if (ui.buttonBox->buttonRole(button) == QDialogButtonBox::AcceptRole){ qDebug() << "Renumbering."; - renumber_dives(ui->spinBox->value()); + renumber_dives(ui.spinBox->value()); } } -RenumberDialog::RenumberDialog(): QDialog(), ui( new Ui::RenumberDialog()) +RenumberDialog::RenumberDialog(): QDialog() { - ui->setupUi(this); - connect(ui->buttonBox, SIGNAL(clicked(QAbstractButton*)), this, SLOT(buttonClicked(QAbstractButton*))); + ui.setupUi(this); + connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton*)), this, SLOT(buttonClicked(QAbstractButton*))); } bool isGnome3Session() |