From b0bf6f8aee4b49905fc5d83dea02a934d4378282 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 18 Mar 2013 20:31:42 +0000 Subject: [PATCH] Fix the "Transmitting" message in ALL.TXT. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3054 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 8d7523370..d7a6ffbee 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1239,7 +1239,7 @@ void MainWindow::guiUpdate() QFile f("ALL.TXT"); f.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append); QTextStream out(&f); - out << QDateTime::currentDateTimeUtc().toString("yyyy-MMM-dd hh:mm") + out << QDateTime::currentDateTimeUtc().toString("hhmm") << " Transmitting: " << QString::fromAscii(msgsent) << endl; f.close(); }