mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
Fix a compilation error with Qt 5.15.x.
This commit is contained in:
parent
2b08cd9e4b
commit
940b26e6ea
@ -9816,8 +9816,13 @@ void MainWindow::foxTest()
|
||||
if(line_trimmed.startsWith("Hound:")) {
|
||||
t=line_trimmed.mid(6,-1).trimmed();
|
||||
b_hounds_written = true;
|
||||
//sdiag << t << Qt::endl;
|
||||
houndstream << t << Qt::endl;
|
||||
houndstream << t
|
||||
#if QT_VERSION >= QT_VERSION_CHECK (5, 15, 0)
|
||||
<< Qt::endl
|
||||
#else
|
||||
<< endl
|
||||
#endif
|
||||
;
|
||||
}
|
||||
|
||||
if(line.contains("Del:")) {
|
||||
|
Loading…
Reference in New Issue
Block a user