mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-23 04:38:37 -05:00
Save m_pttPort when its comboBox is changed, so that the "Test PTT"
button can act accordingly. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3253 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
bb65994011
commit
80724e089d
@ -495,3 +495,8 @@ void DevSetup::on_pollSpinBox_valueChanged(int n)
|
||||
{
|
||||
m_poll=n;
|
||||
}
|
||||
|
||||
void DevSetup::on_pttComboBox_currentIndexChanged(int index)
|
||||
{
|
||||
m_pttPort=index;
|
||||
}
|
||||
|
@ -88,6 +88,8 @@ private slots:
|
||||
void on_rbData_toggled(bool checked);
|
||||
void on_pollSpinBox_valueChanged(int n);
|
||||
|
||||
void on_pttComboBox_currentIndexChanged(int index);
|
||||
|
||||
private:
|
||||
Rig* rig;
|
||||
void msgBox(QString t);
|
||||
|
@ -1,4 +1,4 @@
|
||||
//--------------------------------------------------------------- MainWindow
|
||||
//-------------------------------------------------------------- MainWindow
|
||||
#include "mainwindow.h"
|
||||
#include "ui_mainwindow.h"
|
||||
#include "devsetup.h"
|
||||
|
Loading…
Reference in New Issue
Block a user