Gui: move to new style connect()

This commit is contained in:
wmayer
2023-02-01 11:58:00 +01:00
committed by wwmayer
parent 25a63f8750
commit 2e5cb03261
43 changed files with 237 additions and 246 deletions

View File

@@ -97,8 +97,8 @@ DlgCustomizeImp::DlgCustomizeImp(QWidget* parent, Qt::WindowFlags fl)
// connections
//
connect(buttonHelp, SIGNAL (clicked()), getMainWindow(), SLOT (whatsThis()));
connect(buttonClose, SIGNAL (clicked()), this, SLOT (close()));
connect(buttonHelp, &QPushButton::clicked, getMainWindow(), &MainWindow::whatsThis);
connect(buttonClose, &QPushButton::clicked, this, &QDialog::close);
}
/**