Improved function name

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5547 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville 2015-06-06 13:40:10 +00:00
parent a0f9aa367e
commit db731fefb9
2 changed files with 4 additions and 4 deletions

View File

@ -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 ()) {

View File

@ -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);