| 137 | } |
| 138 | |
| 139 | void ProjectFilterConfigPage::add() |
| 140 | { |
| 141 | m_model->insertRows(m_model->rowCount(), 1); |
| 142 | const QModelIndex index = m_model->index(m_model->rowCount() - 1, FilterModel::Pattern, QModelIndex()); |
| 143 | m_ui->filters->setCurrentIndex(index); |
| 144 | m_ui->filters->edit(index); |
| 145 | } |
| 146 | |
| 147 | void ProjectFilterConfigPage::remove() |
| 148 | { |
nothing calls this directly
no test coverage detected