mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
Fix defect in QSO log where name is not logged
This was a regression introduced in r5225, thanks to John G4KLA for spotting it. Merged from ^/branches/wsjtx git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.5@6030 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
c091fcc908
commit
e50412a7c1
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user