mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 16:42:12 -05:00
Oops! I did not include FREQ in the ADIF records. It's fixed now.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3062 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
3431eb75b8
commit
2667a0651b
@ -1726,6 +1726,7 @@ void MainWindow::on_logQSOButton_clicked() //Log QSO button
|
||||
|
||||
if(m_qsoStop=="") m_qsoStop=m_qsoStart;
|
||||
if(m_qsoStart=="") m_qsoStart=m_qsoStop;
|
||||
QString strDialFreq(QString::number(m_dialFreq,'f',6));
|
||||
|
||||
QString t;
|
||||
t="<call:" + QString::number(m_hisCall.length()) + ">" + m_hisCall;
|
||||
@ -1736,6 +1737,7 @@ void MainWindow::on_logQSOButton_clicked() //Log QSO button
|
||||
t+=" <qso_date:8>" + date;
|
||||
t+=" <time_on:4>" + m_qsoStart;
|
||||
t+=" <time_off:4>" + m_qsoStop;
|
||||
t+=" <freq:" + QString::number(strDialFreq.length()) + ">" + strDialFreq;
|
||||
t+=" <station_callsign:" + QString::number(m_myCall.length()) + ">" + m_myCall;
|
||||
t+=" <my_gridsquare:" + QString::number(m_myGrid.length()) + ">" + m_myGrid;
|
||||
t+=" <eor>";
|
||||
|
Loading…
Reference in New Issue
Block a user