From b4c2952ec823e5242ae554589acce9be8a26e1c7 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 18 Mar 2013 20:22:51 +0000 Subject: [PATCH] More cleanup of details. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3053 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 200120a3c..8d7523370 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1240,7 +1240,7 @@ void MainWindow::guiUpdate() f.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append); QTextStream out(&f); out << QDateTime::currentDateTimeUtc().toString("yyyy-MMM-dd hh:mm") - << " Tx message: " << QString::fromAscii(msgsent) << endl; + << " Transmitting: " << QString::fromAscii(msgsent) << endl; f.close(); } @@ -1882,6 +1882,7 @@ void MainWindow::on_actionErase_ALL_TXT_triggered() //Erase ALL.TXT if(ret==QMessageBox::Yes) { QFile f("ALL.TXT"); f.remove(); + m_RxLog=1; } }