mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-22 20:18:35 -04:00
Rename m65c to q65c.
This commit is contained in:
parent
0e12c8f3f4
commit
a3c7b421bd
@ -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
|
||||
|
@ -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
|
@ -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);
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user