mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-27 14:48:46 -05:00
End lines in wsjtx_qrg.txt, wsjtx_txcall.txt, and wsjtx.log with CRLF.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3048 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
2b1fd7dbce
commit
ae7b78ce22
@ -1617,7 +1617,7 @@ void MainWindow::on_dxCallEntry_textChanged(const QString &t) //dxCall changed
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
QTextStream out(&f);
|
QTextStream out(&f);
|
||||||
out << m_hisCall;
|
out << m_hisCall << "\r\n";
|
||||||
f.close();
|
f.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1651,7 +1651,7 @@ void MainWindow::on_logQSOButton_clicked() //Log QSO button
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
QTextStream out(&f);
|
QTextStream out(&f);
|
||||||
out << logEntry;
|
out << logEntry << "\r\n";
|
||||||
f.close();
|
f.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@ WideGraph::WideGraph(QWidget *parent) :
|
|||||||
QFile f("wsjtx_qrg.txt");
|
QFile f("wsjtx_qrg.txt");
|
||||||
if(f.open(QFile::WriteOnly)) {
|
if(f.open(QFile::WriteOnly)) {
|
||||||
QTextStream out(&f);
|
QTextStream out(&f);
|
||||||
out << m_dialFreq;
|
out << m_dialFreq << "\r\n";
|
||||||
f.close();
|
f.close();
|
||||||
} else {
|
} else {
|
||||||
// msgBox("Cannot open file \"wsjtx_qrg.txt\".");
|
// msgBox("Cannot open file \"wsjtx_qrg.txt\".");
|
||||||
|
Loading…
Reference in New Issue
Block a user