| 829 | } |
| 830 | |
| 831 | void InputEditorView::insertInput() |
| 832 | { |
| 833 | const QModelIndexList indexes = selectionModel()->selectedRows(); |
| 834 | |
| 835 | /* If no row was selected, return */ |
| 836 | if (indexes.count() == 0) |
| 837 | return; |
| 838 | |
| 839 | inputEditorModel->insertRows(indexes[0].row(), 1, false); |
| 840 | inputEditorModel->shiftMarkers(indexes[0].row(), 1); |
| 841 | } |
| 842 | |
| 843 | void InputEditorView::insertInputs() |
| 844 | { |
nothing calls this directly
no test coverage detected