From f979e3c4a70de91e0dab0e82947485ae1dab22ac Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Thu, 13 Sep 2018 16:44:47 -0400 Subject: [PATCH] Removed station power from query menu --- mainwindow.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 4f49ac5..78f4ef1 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -7667,20 +7667,6 @@ void MainWindow::buildQueryMenu(QMenu * menu, QString call){ if(m_config.transmit_directed()) toggleTx(true); }); - auto stationPowerQueryAction = menu->addAction(QString("%1% - What is your station power?").arg(call).trimmed()); - stationPowerQueryAction->setDisabled(isAllCall); - connect(stationPowerQueryAction, &QAction::triggered, this, [this](){ - - QString selectedCall = callsignSelected(); - if(selectedCall.isEmpty()){ - return; - } - - addMessageText(QString("%1%").arg(selectedCall), true); - - if(m_config.transmit_directed()) toggleTx(true); - }); - auto heardQueryAction = menu->addAction(QString("%1$ - What are the stations are you hearing? (Top 4 ranked by strongest SNR)").arg(call).trimmed()); heardQueryAction->setDisabled(isAllCall); connect(heardQueryAction, &QAction::triggered, this, [this](){