mirror of
https://github.com/wf-group/wfview
synced 2026-08-13 17:32:59 -04:00
QT5 compile error fix?
This commit is contained in:
parent
a70b2db5cc
commit
02a7fc2dda
2 changed files with 1 additions and 3 deletions
|
|
@ -71,7 +71,7 @@ void cachingQueue::run()
|
|||
}
|
||||
counter++;
|
||||
|
||||
auto it = queue.constFind(prio);
|
||||
QMultiMap<queuePriority,queueItem>::const_iterator it = queue.constFind(prio);
|
||||
if (it != queue.cend())
|
||||
{
|
||||
auto item = it.value();
|
||||
|
|
|
|||
|
|
@ -547,13 +547,11 @@ bool spectrumScope::update(scopeData data)
|
|||
|
||||
if (data.oor && !oorIndicator->visible()) {
|
||||
oorIndicator->setVisible(true);
|
||||
//oorIndicator->position->setCoords((oldLowerFreq+oldUpperFreq)/2,ui->topLevelSlider->value() - 20);
|
||||
qInfo(logSystem()) << "Scope out of range";
|
||||
} else if (!data.oor && oorIndicator->visible()) {
|
||||
oorIndicator->setVisible(false);
|
||||
}
|
||||
|
||||
//ovfIndicator->setVisible(true);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue