Oops! Committed wrong versions. This code is not ready for use!

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7135 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2016-10-01 19:40:26 +00:00
parent 02ef8823ef
commit 23785f60e4
2 changed files with 4 additions and 4 deletions

View File

@ -2346,7 +2346,7 @@ void::MainWindow::fast_decode_done()
// extract details and send to PSKreporter // extract details and send to PSKreporter
if(m_config.spot_to_psk_reporter() and stdMsg and !m_diskData) { if(m_config.spot_to_psk_reporter() and stdMsg and !m_diskData) {
sendToPskReporter(); sendToPskReporter(decodedtext);
} }
} }
} }
@ -2356,7 +2356,7 @@ void::MainWindow::fast_decode_done()
m_bFastDone=false; m_bFastDone=false;
} }
void MainWindow::sendToPskReporter() void MainWindow::sendToPskReporter(DecodedText decodedtext)
{ {
QString msgmode=m_mode; QString msgmode=m_mode;
if(m_mode=="JT9+JT65") { if(m_mode=="JT9+JT65") {
@ -2532,7 +2532,7 @@ void MainWindow::readFromStdout() //readFromStdout
int nsec=QDateTime::currentMSecsSinceEpoch()/1000-m_secBandChanged; int nsec=QDateTime::currentMSecsSinceEpoch()/1000-m_secBandChanged;
bool okToPost=(nsec>50); bool okToPost=(nsec>50);
if(m_config.spot_to_psk_reporter () and stdMsg and !m_diskData and okToPost) { if(m_config.spot_to_psk_reporter () and stdMsg and !m_diskData and okToPost) {
sendToPskReporter(); sendToPskReporter(decodedtext);
} }
if((m_mode=="JT4" or m_mode=="JT65" or m_mode=="QRA64") and m_msgAvgWidget!=NULL) { if((m_mode=="JT4" or m_mode=="JT65" or m_mode=="QRA64") and m_msgAvgWidget!=NULL) {

View File

@ -534,7 +534,7 @@ private:
void transmit (double snr = 99.); void transmit (double snr = 99.);
void rigFailure (QString const& reason); void rigFailure (QString const& reason);
void pskSetLocal (); void pskSetLocal ();
void sendToPskReporter(); void sendToPskReporter(DecodedText decodedtext);
void displayDialFrequency (); void displayDialFrequency ();
void transmitDisplay (bool); void transmitDisplay (bool);
void processMessage(QString const& messages, qint32 position, bool ctrl); void processMessage(QString const& messages, qint32 position, bool ctrl);