Gui: Eliminate implicit capture of this via =

Per clang: "implicit capture of 'this' with a capture default of '=' is deprecated"
This commit is contained in:
Chris Hennes
2025-03-22 17:59:18 -05:00
committed by Benjamin Nauck
parent 2a81e9d18d
commit 90432f967f

View File

@@ -264,7 +264,7 @@ void TaskTransform::setupGui()
connect(rotationSpinBox,
qOverload<double>(&QuantitySpinBox::valueChanged),
this,
[=](double) {
[this,rotationSpinBox](double) {
onRotationChange(rotationSpinBox);
});
}