mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-08-13 10:04:13 +02:00
Migration of signal/slot to method pointer continued. Mostly simple cases.
This commit is contained in:
@@ -87,8 +87,8 @@ ExportDialog::ExportDialog(
|
||||
deSelectAll -> setText(tr("Tout décocher"));
|
||||
hLayout -> addWidget(selectAll);
|
||||
hLayout -> addWidget(deSelectAll);
|
||||
connect(selectAll, SIGNAL(clicked()), this, SLOT(slot_selectAllClicked()));
|
||||
connect(deSelectAll, SIGNAL(clicked()), this, SLOT(slot_deSelectAllClicked()));
|
||||
connect(selectAll, &QPushButton::clicked, this, &ExportDialog::slot_selectAllClicked);
|
||||
connect(deSelectAll, &QPushButton::clicked, this, &ExportDialog::slot_deSelectAllClicked);
|
||||
|
||||
|
||||
QVBoxLayout *layout = new QVBoxLayout(this);
|
||||
|
||||
Reference in New Issue
Block a user