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();