| 1645 | } |
| 1646 | |
| 1647 | void MainWindow::updateEOLBasedUi(ScintillaNext *editor) |
| 1648 | { |
| 1649 | qInfo(Q_FUNC_INFO); |
| 1650 | |
| 1651 | switch(editor->eOLMode()) { |
| 1652 | case SC_EOL_CR: |
| 1653 | ui->actionMacintosh->setChecked(true); |
| 1654 | break; |
| 1655 | case SC_EOL_CRLF: |
| 1656 | ui->actionWindows->setChecked(true); |
| 1657 | break; |
| 1658 | case SC_EOL_LF: |
| 1659 | ui->actionUnix->setChecked(true); |
| 1660 | break; |
| 1661 | } |
| 1662 | } |
| 1663 | |
| 1664 | void MainWindow::updateSaveStatusBasedUi(ScintillaNext *editor) |
| 1665 | { |
nothing calls this directly
no outgoing calls
no test coverage detected