| 690 | } |
| 691 | |
| 692 | void InputEditorView::removeInputColumn() |
| 693 | { |
| 694 | if (contextSection < InputEditorModel::COLUMN_SPECIAL_SIZE) |
| 695 | return; |
| 696 | |
| 697 | bool removed = inputEditorModel->removeUniqueInput(contextSection); |
| 698 | |
| 699 | /* Show alert window if failed */ |
| 700 | if (!removed) |
| 701 | QMessageBox::information(this, "Column not removed", tr("Column could not be removed, because the input is present in past frames.")); |
| 702 | } |
| 703 | |
| 704 | void InputEditorView::factorInputColumn() |
| 705 | { |
nothing calls this directly
no test coverage detected