mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-27 06:38:44 -05: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 + "," +
|
m_dateTime.time().toString("hh:mm,") + hisCall + "," +
|
||||||
hisGrid + "," + strDialFreq + "," + mode +
|
hisGrid + "," + strDialFreq + "," + mode +
|
||||||
"," + rptSent + "," + rptRcvd + "," + m_txPower +
|
"," + rptSent + "," + rptRcvd + "," + m_txPower +
|
||||||
"," + comments; + "," + name;
|
"," + comments + "," + name;
|
||||||
QTextStream out(&f);
|
QTextStream out(&f);
|
||||||
out << logEntry << endl;
|
out << logEntry << endl;
|
||||||
f.close();
|
f.close();
|
||||||
|
Loading…
Reference in New Issue
Block a user