| 236 | } |
| 237 | |
| 238 | void CustomNodeDialog::on_pushButtonRemove_pressed() |
| 239 | { |
| 240 | auto selected = ui->tableWidget->selectionModel()->selectedRows(); |
| 241 | for( const auto& index: selected) |
| 242 | { |
| 243 | ui->tableWidget->removeRow( index.row() ); |
| 244 | } |
| 245 | checkValid(); |
| 246 | } |
nothing calls this directly
no outgoing calls
no test coverage detected