Skip to content

Commit

Permalink
Pager: Add alpha and numeric columns. Implements #2319
Browse files Browse the repository at this point in the history
  • Loading branch information
srcejon committed Nov 10, 2024
1 parent 86f4a5b commit d7547e2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

// Map main table column numbers to combo box indices
std::vector<int> 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,
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit d7547e2

Please sign in to comment.