| 805 | } |
| 806 | |
| 807 | void FormSearchControl::removeCurrent() |
| 808 | { |
| 809 | QModelIndex index = ui->results->currentIndex(); |
| 810 | int row = proxy->mapToSource(index).row(); |
| 811 | if (row >= 0) |
| 812 | { |
| 813 | model->removeRow(row); |
| 814 | } |
| 815 | } |
| 816 | |
| 817 | void FormSearchControl::copySeed() |
| 818 | { |