Fix implicit lambda captures of this by [=]

Those implicit captures were deprecated in C++20
This commit is contained in:
Dalton Messmer
2024-10-21 21:00:02 -04:00
parent 9d2f99ea33
commit 027042a568
8 changed files with 19 additions and 19 deletions

View File

@@ -54,6 +54,7 @@ SaWaterfallView::SaWaterfallView(SaControls *controls, SaProcessor *processor, Q
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
connect(getGUI()->mainWindow(), SIGNAL(periodicUpdate()), this, SLOT(periodicUpdate()));
connect(&controls->m_waterfallModel, &BoolModel::dataChanged, this, &SaWaterfallView::updateVisibility);
m_displayTop = 1;
m_displayBottom = height() -2;