From 6d2daedded9c6ebf818837a53a4e43f3faf98cb7 Mon Sep 17 00:00:00 2001 From: "Edson W. R. Pereira" Date: Sat, 18 Jan 2014 12:42:21 +0000 Subject: [PATCH] Added 3 missing files to lib/CMakeLists.txt Added code to flush any queued spots to PSKReporter prior to a band change. This should prevent spots being reported on a wrong band. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3647 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- lib/CMakeLists.txt | 3 +++ mainwindow.cpp | 3 +++ 2 files changed, 6 insertions(+) diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index c5634b867..45a385ac0 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -79,6 +79,7 @@ set (FSRCS decoder.f90 deg2grid.f90 demod64a.f90 + determ.f90 downsam9.f90 encode232.f90 entail.f90 @@ -93,6 +94,7 @@ set (FSRCS filbig.f90 fillcom.f90 flat2.f90 + flat3.f90 flat65.f90 four2a.f90 gen65.f90 @@ -123,6 +125,7 @@ set (FSRCS pctile.f90 peakdt9.f90 pfxdump.f90 + polfit.f90 sec_midn.f90 setup65.f90 sleep_msec.f90 diff --git a/mainwindow.cpp b/mainwindow.cpp index 1db1c4bdc..8b1d6ae43 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2638,6 +2638,9 @@ void MainWindow::on_bandComboBox_activated(int index) int ret=0; QString rt; + // Upload any queued spots before changing band + psk_Reporter->sendReport(); + m_band=index; QString t=m_dFreq[index]; m_dialFreq=t.toDouble();