From d7547e2d2585f3a3da9d95d9d8bbc7a413e5e94c Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Sun, 10 Nov 2024 15:48:36 +0000 Subject: [PATCH] Pager: Add alpha and numeric columns. Implements #2319 --- plugins/channelrx/demodpager/pagerdemodnotificationdialog.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/channelrx/demodpager/pagerdemodnotificationdialog.cpp b/plugins/channelrx/demodpager/pagerdemodnotificationdialog.cpp index 5c26f4a75..a4405175e 100644 --- a/plugins/channelrx/demodpager/pagerdemodnotificationdialog.cpp +++ b/plugins/channelrx/demodpager/pagerdemodnotificationdialog.cpp @@ -28,7 +28,7 @@ // Map main table column numbers to combo box indices std::vector PagerDemodNotificationDialog::m_columnMap = { - PagerDemodSettings::MESSAGE_COL_ADDRESS, PagerDemodSettings::MESSAGE_COL_MESSAGE + PagerDemodSettings::MESSAGE_COL_ADDRESS, PagerDemodSettings::MESSAGE_COL_MESSAGE, PagerDemodSettings::MESSAGE_COL_ALPHA, PagerDemodSettings::MESSAGE_COL_NUMERIC }; PagerDemodNotificationDialog::PagerDemodNotificationDialog(PagerDemodSettings *settings, @@ -132,6 +132,8 @@ void PagerDemodNotificationDialog::addRow(PagerDemodSettings::NotificationSettin match->addItem("Address"); match->addItem("Message"); + match->addItem("Alpha"); + match->addItem("Numeric"); QTableWidgetItem *regExpItem = new QTableWidgetItem(); QTableWidgetItem *speechItem = new QTableWidgetItem();