Skip to content
Snippets Groups Projects
Commit e7c84534 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm unused capture

parent 6ac85276
No related branches found
No related tags found
1 merge request!2697follow-up
Pipeline #153135 failed
......@@ -122,7 +122,7 @@ void HeinzFormLayout::addValue(DoubleProperty& d, std::function<void(double)> on
void HeinzFormLayout::insertValue(int row, DoubleProperty& d)
{
insertValue(row, d, [ec = m_ec, &d](double val) {
insertValue(row, d, [&d](double val) {
d.setDVal(val);
emit gDoc->sampleChanged();
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment