Add DX grid to wsjtx_status.txt if available

Thanks to  Mike W9MDB  for this patch  which allows  applications like
PstRotatorAZ to make use of this file.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8546 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville 2018-03-09 13:19:41 +00:00
parent 4db706e5f1
commit f323a5ed35
1 changed files with 3 additions and 1 deletions

View File

@ -1958,9 +1958,11 @@ void MainWindow::statusChanged()
QFile f {m_config.temp_dir ().absoluteFilePath ("wsjtx_status.txt")};
if(f.open(QFile::WriteOnly | QIODevice::Text)) {
QTextStream out(&f);
QString tmpGrid = m_hisGrid;
if (!tmpGrid.size ()) tmpGrid="n/a"; // Not Available
out << qSetRealNumberPrecision (12) << (m_freqNominal / 1.e6)
<< ";" << m_mode << ";" << m_hisCall << ";"
<< ui->rptSpinBox->value() << ";" << m_modeTx << endl;
<< ui->rptSpinBox->value() << ";" << m_modeTx << ";" << tmpGrid << endl;
f.close();
} else {
if (m_splash && m_splash->isVisible ()) m_splash->hide ();