From d1b239201cc6d16b696057422964c0f7117672aa Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Tue, 28 Aug 2018 21:06:49 -0400 Subject: [PATCH] Removed from callsign from message save log...redundant --- mainwindow.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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();