| 1745 | } |
| 1746 | |
| 1747 | void MainWindow::updateSelectionBasedUi(ScintillaNext *editor) |
| 1748 | { |
| 1749 | ui->actionUndo->setEnabled(editor->canUndo()); |
| 1750 | ui->actionRedo->setEnabled(editor->canRedo()); |
| 1751 | } |
| 1752 | |
| 1753 | void MainWindow::updateContentBasedUi(ScintillaNext *editor) |
| 1754 | { |
nothing calls this directly
no test coverage detected