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
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue