From db731fefb97cafb1a9773b779225a588f7318e28 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sat, 6 Jun 2015 13:40:10 +0000 Subject: [PATCH] Improved function name git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5547 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 6 +++--- mainwindow.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 14d50b79f..d8c98ab5d 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1897,7 +1897,7 @@ void MainWindow::guiUpdate() m_btxok=false; } if(m_ntr==1) { - bandHopping(); + WSPR_scheduling (); m_ntr=0; //This WSPR Rx sequence is complete } } @@ -2279,7 +2279,7 @@ void MainWindow::stopTx2() } if(m_mode.mid(0,4)=="WSPR" and m_ntr==-1 and !m_tuneup) { m_wideGraph->setWSPRtransmitted(); - bandHopping(); + WSPR_scheduling (); m_ntr=0; } } @@ -4295,7 +4295,7 @@ void MainWindow::on_pbTxNext_clicked(bool b) m_txNext=b; } -void MainWindow::bandHopping() +void MainWindow::WSPR_scheduling () { bool transmit {false}; if (ui->band_hopping_group_box->isChecked ()) { diff --git a/mainwindow.h b/mainwindow.h index 1141c0f12..7a7483faa 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -510,7 +510,7 @@ private: void postDecode (bool is_new, QString const& message); void enable_DXCC_entity (bool on); void switch_mode (Mode); - void bandHopping(); + void WSPR_scheduling (); }; extern void getfile(QString fname, int ntrperiod);