aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/about.cpp
diff options
context:
space:
mode:
authorGravatar Thiago Macieira <thiago@macieira.org>2013-10-03 11:54:25 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-10-03 12:13:48 -0700
commit8e81d3f10087fa7ac600dcb18cfebf27716c4209 (patch)
tree3f6fc136134fe7d4f14937617c29e380e7c6e124 /qt-ui/about.cpp
parentf0f76056ac3982783ab3dfe94d77ba5d25e19957 (diff)
downloadsubsurface-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/about.cpp')
-rw-r--r--qt-ui/about.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/qt-ui/about.cpp b/qt-ui/about.cpp
index 56fae4b03..835c22c94 100644
--- a/qt-ui/about.cpp
+++ b/qt-ui/about.cpp
@@ -13,17 +13,16 @@ SubsurfaceAbout *SubsurfaceAbout::instance()
}
SubsurfaceAbout::SubsurfaceAbout(QWidget* parent, Qt::WindowFlags f)
-: ui( new Ui::SubsurfaceAbout())
{
- ui->setupUi(this);
- ui->aboutLabel->setText(tr("<span style='font-size: 18pt; font-weight: bold;'>" \
+ ui.setupUi(this);
+ ui.aboutLabel->setText(tr("<span style='font-size: 18pt; font-weight: bold;'>" \
"Subsurface " VERSION_STRING "</span><br><br>" \
"Multi-platform divelog software in C<br>" \
"<span style='font-size: 8pt'>Linus Torvalds, Dirk Hohndel, and others, 2011, 2012, 2013</span>"));
licenseButton = new QPushButton(tr("&License"));
websiteButton = new QPushButton(tr("&Website"));
- ui->buttonBox->addButton(licenseButton, QDialogButtonBox::ActionRole);
- ui->buttonBox->addButton(websiteButton, QDialogButtonBox::ActionRole);
+ ui.buttonBox->addButton(licenseButton, QDialogButtonBox::ActionRole);
+ ui.buttonBox->addButton(websiteButton, QDialogButtonBox::ActionRole);
connect(licenseButton, SIGNAL(clicked(bool)), this, SLOT(licenseClicked()));
connect(websiteButton, SIGNAL(clicked(bool)), this, SLOT(websiteClicked()));
}