From 90432f967fdfa0f02af0aff8f5fc1b495d879ecc Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Sat, 22 Mar 2025 17:59:18 -0500 Subject: [PATCH] Gui: Eliminate implicit capture of this via = Per clang: "implicit capture of 'this' with a capture default of '=' is deprecated" --- src/Gui/TaskCSysDragger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/TaskCSysDragger.cpp b/src/Gui/TaskCSysDragger.cpp index 27ef9d9e49..77c74be9f0 100644 --- a/src/Gui/TaskCSysDragger.cpp +++ b/src/Gui/TaskCSysDragger.cpp @@ -264,7 +264,7 @@ void TaskTransform::setupGui() connect(rotationSpinBox, qOverload(&QuantitySpinBox::valueChanged), this, - [=](double) { + [this,rotationSpinBox](double) { onRotationChange(rotationSpinBox); }); }