fixed type specify c++17 again

This commit is contained in:
Blake Leverington 2023-09-16 15:37:06 +02:00
parent a02bb75984
commit cef58666f0
2 changed files with 2 additions and 2 deletions

View File

@ -80,14 +80,14 @@ void DialogLinearity::run()
//Collect sensor data //Collect sensor data
histoReady = 0; histoReady = 0;
connect(&(theHW->eventBuilder), EventBuilder::sigHistoCompleted, this, DialogLinearity::onHistogramCompleted); connect(&(theHW->eventBuilder), &EventBuilder::sigHistoCompleted, this, &DialogLinearity::onHistogramCompleted);
theHW->eventBuilder.startTakingHistos(nacqs); theHW->eventBuilder.startTakingHistos(nacqs);
while (!histoReady) while (!histoReady)
{ {
QCoreApplication::processEvents(); QCoreApplication::processEvents();
QThread::msleep(10); QThread::msleep(10);
} }
disconnect(&(theHW->eventBuilder), EventBuilder::sigHistoCompleted, this, DialogLinearity::onHistogramCompleted); disconnect(&(theHW->eventBuilder), &EventBuilder::sigHistoCompleted, this, &DialogLinearity::onHistogramCompleted);
QVector<Histogram> histos = theHW->eventBuilder.getHistos(); QVector<Histogram> histos = theHW->eventBuilder.getHistos();
result.mean.fill(0, nr_devices*128); result.mean.fill(0, nr_devices*128);

Binary file not shown.