More cleanup of details.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3053 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2013-03-18 20:22:51 +00:00
parent b4932f04ef
commit a0c4d526e8
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}
}