| 4420 | } |
| 4421 | |
| 4422 | void Editor::DelChar() |
| 4423 | { |
| 4424 | if ( !RangeContainsProtected ( sel.MainCaret(), sel.MainCaret() + 1 ) ) { |
| 4425 | pdoc->DelChar ( sel.MainCaret() ); |
| 4426 | } |
| 4427 | // Avoid blinking during rapid typing: |
| 4428 | ShowCaretAtCurrentPosition(); |
| 4429 | } |
| 4430 | |
| 4431 | void Editor::DelCharBack ( bool allowLineStartDeletion ) |
| 4432 | { |
no test coverage detected