Rename m65c to q65c.

This commit is contained in:
Joe Taylor 2022-12-12 13:09:07 -05:00
parent 0e12c8f3f4
commit a3c7b421bd
4 changed files with 6 additions and 8 deletions

View File

@ -23,9 +23,9 @@ set (libm65_FSRCS
iqcal.f90
iqfix.f90
lorentzian.f90
m65c.f90
moon2.f90
moondop.f90
q65c.f90
q65wa.f90
recvpkt.f90
sun.f90

View File

@ -1,4 +1,4 @@
subroutine m65c(itimer)
subroutine q65c(itimer)
use timer_module, only: timer
use timer_impl, only: fini_timer !, limtrace
@ -38,8 +38,6 @@ subroutine m65c(itimer)
return
endif
lq65w=.true.
lq65w2=.true.
datetime(18:20)=':00'
! if(first) call timer('q65w ',0)
@ -52,4 +50,4 @@ subroutine m65c(itimer)
call timer('decode0 ',1)
return
end subroutine m65c
end subroutine q65c

View File

@ -186,7 +186,7 @@ MainWindow::~MainWindow()
{
writeSettings();
int itimer=1;
m65c_(&itimer);
q65c_(&itimer);
if (soundInThread.isRunning()) {
soundInThread.quit();
@ -901,7 +901,7 @@ void MainWindow::decode() //decode()
decodes_.ncand=0;
m_fetched=0;
int itimer=0;
watcher3.setFuture(QtConcurrent::run (std::bind (m65c_, &itimer)));
watcher3.setFuture(QtConcurrent::run (std::bind (q65c_, &itimer)));
decodeBusy(true);
}

View File

@ -215,7 +215,7 @@ extern "C" {
void astrosub00_ (int* nyear, int* month, int* nday, double* uth, int* nfreq,
const char* mygrid, int* ndop00, int len1);
void m65c_(int* itimer);
void q65c_(int* itimer);
}
#endif // MAINWINDOW_H