diff --git a/mainwindow.cpp b/mainwindow.cpp index dbcc414..8ebdaf8 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -9194,12 +9194,11 @@ void MainWindow::processCommandActivity() { if (f.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append)) { QTextStream out(&f); auto df = dialFrequency(); - auto text = QString("%1\t%2MHz\t%3Hz\t%4dB\t%5: %6"); + auto text = QString("%1\t%2MHz\t%3Hz\t%4dB\t%5"); text = text.arg(d.utcTimestamp.toString()); text = text.arg(Radio::frequency_MHz_string(df)); text = text.arg(d.freq); text = text.arg(Varicode::formatSNR(d.snr)); - text = text.arg(d.from); text = text.arg(d.text); out << text << endl; f.close();