From a0a23d3d737f43d9994be19c09a9c7003feab0ef Mon Sep 17 00:00:00 2001 From: f4exb Date: Sat, 11 Aug 2018 17:36:02 +0200 Subject: [PATCH] Main Window: fixed some debug messages --- sdrgui/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdrgui/mainwindow.cpp b/sdrgui/mainwindow.cpp index 0580daa2c..3884bf2d2 100644 --- a/sdrgui/mainwindow.cpp +++ b/sdrgui/mainwindow.cpp @@ -1479,7 +1479,7 @@ void MainWindow::sampleSourceChanged() if (currentSourceTabIndex >= 0) { - qDebug("MainWindow::on_sampleSource_confirmClicked: tab at %d", currentSourceTabIndex); + qDebug("MainWindow::sampleSourceChanged: tab at %d", currentSourceTabIndex); DeviceUISet *deviceUI = m_deviceUIs[currentSourceTabIndex]; deviceUI->m_deviceSourceAPI->saveSourceSettings(m_settings.getWorkingPreset()); // save old API settings deviceUI->m_deviceSourceAPI->stopAcquisition(); @@ -1568,7 +1568,7 @@ void MainWindow::sampleSinkChanged() if (currentSinkTabIndex >= 0) { - qDebug("MainWindow::on_sampleSink_confirmClicked: tab at %d", currentSinkTabIndex); + qDebug("MainWindow::sampleSinkChanged: tab at %d", currentSinkTabIndex); DeviceUISet *deviceUI = m_deviceUIs[currentSinkTabIndex]; deviceUI->m_deviceSinkAPI->saveSinkSettings(m_settings.getWorkingPreset()); // save old API settings deviceUI->m_deviceSinkAPI->stopGeneration();