Fix defect in QSO log where name is not logged

This was  a regression introduced in  r5225, thanks to John  G4KLA for
spotting it.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6029 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville 2015-10-31 18:27:30 +00:00
parent 08235033cc
commit 9e697b2725
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ void LogQSO::accept()
m_dateTime.time().toString("hh:mm,") + hisCall + "," +
hisGrid + "," + strDialFreq + "," + mode +
"," + rptSent + "," + rptRcvd + "," + m_txPower +
"," + comments; + "," + name;
"," + comments + "," + name;
QTextStream out(&f);
out << logEntry << endl;
f.close();