| 128 | } |
| 129 | |
| 130 | void MarkerView::removeSlot() |
| 131 | { |
| 132 | const QModelIndexList indexes = selectionModel()->selectedRows(); |
| 133 | |
| 134 | for (int i = indexes.count()-1; i >= 0; i--) { |
| 135 | markerModel->removeRows(indexes[i].row(), 1); |
| 136 | } |
| 137 | } |
nothing calls this directly
no test coverage detected