| 451 | } |
| 452 | |
| 453 | void MainWindow::filterSetAll() |
| 454 | { |
| 455 | inhibitFilterUpdate = true; |
| 456 | for (int i = 0; i < ui->listFilters->count(); i++) |
| 457 | { |
| 458 | ui->listFilters->item(i)->setCheckState(Qt::Checked); |
| 459 | } |
| 460 | inhibitFilterUpdate = false; |
| 461 | model->setAllFilters(true); |
| 462 | } |
| 463 | |
| 464 | void MainWindow::filterClearAll() |
| 465 | { |
nothing calls this directly
no test coverage detected