mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
f0f76056ac
commit
8e81d3f100
22 changed files with 563 additions and 572 deletions
|
@ -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()));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue