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

rm unused capture

parent de1f0423
No related branches found
No related tags found
1 merge request!2697follow-up
Pipeline #153137 passed
......@@ -95,7 +95,7 @@ void InterferenceForm::createInterferenceWidgets()
m_layout->addValue(itf->positionVariance());
m_layout->addBoldRow("Domain size 1:",
GUI::Util::createIntSpinBox([itf] { return itf->domainSize1(); },
[this, itf](int v) {
[itf](int v) {
itf->setDomainSize1(v);
emit gDoc->sampleChanged();
},
......@@ -103,7 +103,7 @@ void InterferenceForm::createInterferenceWidgets()
"Domain size 1 in number of unit cells"));
m_layout->addBoldRow("Domain size 2:",
GUI::Util::createIntSpinBox([itf] { return itf->domainSize2(); },
[this, itf](int v) {
[itf](int v) {
itf->setDomainSize2(v);
emit gDoc->sampleChanged();
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment