Skip to content

Commit

Permalink
Merge pull request #2320 from srcejon/fix_2319
Browse files Browse the repository at this point in the history
Pager: Add Add notifications based on alpha and numeric columns.
  • Loading branch information
f4exb authored Nov 10, 2024
2 parents 86f4a5b + d7547e2 commit ca76d5f
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 ca76d5f

Please sign in to comment.