1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-22 08:04:49 -05:00

Compare commits

..

No commits in common. "4daf06bed772eebde909d8086d67fd20c808f083" and "a9fb5b91ec753879ac48e9cde8ac1849f920d5cb" have entirely different histories.

3 changed files with 11 additions and 11 deletions

2
external/windows vendored

@ -1 +1 @@
Subproject commit 5980a9e4ffaf58b68381000f0157c6a41105980f
Subproject commit f20b21d50f9ef3930f6979759adc5af32f65c92a

View File

@ -330,7 +330,7 @@ void RemoteInputGui::on_dataApplyButton_clicked(bool checked)
sendSettings();
}
void RemoteInputGui::on_apiAddress_editingFinished()
void RemoteInputGui::on_apiAddress_returnPressed()
{
m_settings.m_apiAddress = ui->apiAddress->text();
@ -341,14 +341,14 @@ void RemoteInputGui::on_apiAddress_editingFinished()
sendSettings();
}
void RemoteInputGui::on_dataAddress_editingFinished()
void RemoteInputGui::on_dataAddress_returnPressed()
{
m_settings.m_dataAddress = ui->dataAddress->text();
ui->dataApplyButton->setEnabled(true);
ui->dataApplyButton->setStyleSheet("QPushButton { background-color : green; }");
}
void RemoteInputGui::on_dataPort_editingFinished()
void RemoteInputGui::on_dataPort_returnPressed()
{
bool ok;
quint16 udpPort = ui->dataPort->text().toInt(&ok);
@ -364,7 +364,7 @@ void RemoteInputGui::on_dataPort_editingFinished()
ui->dataApplyButton->setStyleSheet("QPushButton { background-color : green; }");
}
void RemoteInputGui::on_multicastAddress_editingFinished()
void RemoteInputGui::on_multicastAddress_returnPressed()
{
m_settings.m_multicastAddress = ui->multicastAddress->text();
ui->dataApplyButton->setEnabled(true);
@ -378,7 +378,7 @@ void RemoteInputGui::on_multicastJoin_toggled(bool checked)
ui->dataApplyButton->setStyleSheet("QPushButton { background-color : green; }");
}
void RemoteInputGui::on_apiPort_editingFinished()
void RemoteInputGui::on_apiPort_returnPressed()
{
bool ctlOk;
int udpApiPort = ui->apiPort->text().toInt(&ctlOk);

View File

@ -120,11 +120,11 @@ private slots:
void on_dataApplyButton_clicked(bool checked);
void on_dcOffset_toggled(bool checked);
void on_iqImbalance_toggled(bool checked);
void on_apiAddress_editingFinished();
void on_apiPort_editingFinished();
void on_dataAddress_editingFinished();
void on_dataPort_editingFinished();
void on_multicastAddress_editingFinished();
void on_apiAddress_returnPressed();
void on_apiPort_returnPressed();
void on_dataAddress_returnPressed();
void on_dataPort_returnPressed();
void on_multicastAddress_returnPressed();
void on_multicastJoin_toggled(bool checked);
void on_startStop_toggled(bool checked);
void on_eventCountsReset_clicked(bool checked);