Skip to content

Commit

Permalink
multi_vfo: improve Qt6 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
vladisslav2011 committed Jul 28, 2023
1 parent 48a9cbf commit f472e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/applications/gqrx/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ void MainWindow::storeSession()
m_settings->beginGroup("audio");
}
if (rx->get_audio_rec_dir() != QDir::homePath().toStdString())
m_settings->setValue("rec_dir", rx->get_audio_rec_dir().data());
m_settings->setValue("rec_dir", QString::fromStdString(rx->get_audio_rec_dir()));
else
m_settings->remove("rec_dir");

Expand Down

0 comments on commit f472e44

Please sign in to comment.