Squish: Remove unused capture

Change-Id: I3e54eabc7829d7e69471406235a0065b4e0aec6c
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2022-10-05 06:29:31 +02:00
parent 7dfe423205
commit b11490142e

View File

@@ -68,7 +68,7 @@ public:
connect(buttons->button(QDialogButtonBox::Cancel), &QPushButton::clicked, connect(buttons->button(QDialogButtonBox::Cancel), &QPushButton::clicked,
this, &QDialog::reject); this, &QDialog::reject);
connect(&aut, &QComboBox::currentIndexChanged, connect(&aut, &QComboBox::currentIndexChanged,
this, [this, okButton] (int index) { this, [okButton] (int index) {
okButton->setEnabled(index > 0); okButton->setEnabled(index > 0);
}); });
setWindowTitle(Tr::tr("Recording Settings")); setWindowTitle(Tr::tr("Recording Settings"));