Remove WSPR-related killFile() code

This commit is contained in:
Allan Bazinet 2024-10-11 06:30:59 -07:00
parent f2c01d31a4
commit bf00f20482

View file

@ -4711,10 +4711,6 @@ void MainWindow::killFile ()
!(m_saveAll || (m_saveDecoded && m_bDecoded) || m_fnameWE == m_fileToSave)) {
QFile f1 {m_fnameWE + ".wav"};
if(f1.exists()) f1.remove();
if(m_mode.startsWith ("WSPR")) {
QFile f2 {m_fnameWE + ".c2"};
if(f2.exists()) f2.remove();
}
}
}