1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-18 05:38:47 -04:00

SpectrumVis: removed message queue parameter from configure method

This commit is contained in:
f4exb
2020-05-01 02:23:26 +02:00
parent 79b670d919
commit 7d6d351891
6 changed files with 58 additions and 55 deletions
+9 -9
View File
@@ -229,15 +229,15 @@ void GLSpectrumGUI::applySettingsVis()
if (m_spectrumVis)
{
m_spectrumVis->configure(m_messageQueueToVis,
m_fftSize,
m_refLevel,
m_powerRange,
m_fftOverlap,
m_averagingNb,
(SpectrumVis::AvgMode) m_averagingMode,
(FFTWindow::Function) m_fftWindow,
m_linear
m_spectrumVis->configure(
m_fftSize,
m_refLevel,
m_powerRange,
m_fftOverlap,
m_averagingNb,
(SpectrumVis::AvgMode) m_averagingMode,
(FFTWindow::Function) m_fftWindow,
m_linear
);
}