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:
committed by
Benjamin Nauck
parent
2a81e9d18d
commit
90432f967f
@@ -264,7 +264,7 @@ void TaskTransform::setupGui()
|
||||
connect(rotationSpinBox,
|
||||
qOverload<double>(&QuantitySpinBox::valueChanged),
|
||||
this,
|
||||
[=](double) {
|
||||
[this,rotationSpinBox](double) {
|
||||
onRotationChange(rotationSpinBox);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user