mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
Remove more unused QMAP variables.
This commit is contained in:
parent
ce2a4d2fe7
commit
0f417374c3
@ -32,7 +32,7 @@ extern struct { //This is "common/datcom/..." in Fortran
|
||||
int nxpol; //1 if using xpol antennas, 0 otherwise
|
||||
int nBaseSubmode; //Base submode for Q65-60x (aka m_modeQ65)
|
||||
int ndop00; //EME Self Doppler
|
||||
int nsave; //Number of s3(64,63) spectra saved
|
||||
int nsave; //no longer used
|
||||
int max_drift; //Maximum Q65 drift: units symbol_rate/TxT
|
||||
int offset; //Offset in Hz
|
||||
int nhsym; //Number of available JT65 half-symbols
|
||||
|
@ -12,7 +12,6 @@ public:
|
||||
~DevSetup();
|
||||
|
||||
void initDlg();
|
||||
qint32 m_pttPort;
|
||||
qint32 m_fCal;
|
||||
qint32 m_udpPort;
|
||||
qint32 m_astroFont;
|
||||
@ -30,7 +29,6 @@ public:
|
||||
QString m_myGrid;
|
||||
QString m_saveDir;
|
||||
QString m_azelDir;
|
||||
QString m_editorCommand;
|
||||
|
||||
public slots:
|
||||
void accept();
|
||||
|
@ -82,7 +82,6 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
m_loopall=false;
|
||||
m_startAnother=false;
|
||||
m_saveAll=false;
|
||||
m_onlyEME=false;
|
||||
m_sec0=-1;
|
||||
m_hsym0=-1;
|
||||
m_palette="CuteSDR";
|
||||
@ -90,7 +89,6 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
m_NB=false;
|
||||
m_mode="Q65";
|
||||
m_udpPort=50004;
|
||||
m_nsave=0;
|
||||
m_modeQ65=0;
|
||||
m_TRperiod=60;
|
||||
|
||||
@ -843,7 +841,6 @@ void MainWindow::decode() //decode()
|
||||
datcom_.nfsample=96000;
|
||||
datcom_.nxpol=0;
|
||||
datcom_.nBaseSubmode=m_modeQ65;
|
||||
datcom_.nsave=m_nsave;
|
||||
datcom_.max_drift=ui->sbMaxDrift->value();
|
||||
datcom_.offset=ui->sbOffset->value();
|
||||
datcom_.ndepth=1;
|
||||
@ -1033,7 +1030,6 @@ void MainWindow::guiUpdate()
|
||||
|
||||
QDateTime t = QDateTime::currentDateTimeUtc();
|
||||
m_astro_window->astroUpdate(t, m_myGrid, m_azelDir, m_xavg);
|
||||
m_setftx=0;
|
||||
QString utc = t.date().toString(" yyyy MMM dd \n") + t.time().toString();
|
||||
ui->labUTC->setText(utc);
|
||||
m_hsym0=khsym;
|
||||
|
@ -83,7 +83,6 @@ private slots:
|
||||
void on_actionQuick_Start_Guide_to_Q65_triggered();
|
||||
void on_actionQuick_Start_Guide_to_WSJT_X_2_7_and_QMAP_triggered();
|
||||
void on_actionAlso_Q65_30x_toggled(bool b);
|
||||
|
||||
void on_sbMaxDrift_valueChanged(int arg1);
|
||||
|
||||
private:
|
||||
@ -96,11 +95,8 @@ private:
|
||||
qint32 m_waterfallAvg;
|
||||
qint32 m_DF;
|
||||
qint32 m_tol;
|
||||
qint32 m_QSOfreq0;
|
||||
qint32 m_astroFont;
|
||||
qint32 m_fCal;
|
||||
qint32 m_txFreq;
|
||||
qint32 m_setftx;
|
||||
qint32 m_sec0;
|
||||
qint32 m_nutc0;
|
||||
qint32 m_nrx;
|
||||
@ -108,8 +104,6 @@ private:
|
||||
qint32 m_paInDevice;
|
||||
qint32 m_udpPort;
|
||||
qint32 m_NBslider;
|
||||
qint32 m_nsum;
|
||||
qint32 m_nsave;
|
||||
qint32 m_TRperiod;
|
||||
qint32 m_modeQ65;
|
||||
qint32 m_dB;
|
||||
@ -134,7 +128,6 @@ private:
|
||||
bool m_restart;
|
||||
bool m_startAnother;
|
||||
bool m_saveAll;
|
||||
bool m_onlyEME;
|
||||
bool m_NB;
|
||||
bool m_decode_called=false;
|
||||
bool m_bAlso30=false;
|
||||
|
Loading…
Reference in New Issue
Block a user