| 4295 | } |
| 4296 | |
| 4297 | void Editor::Cut() |
| 4298 | { |
| 4299 | pdoc->CheckReadOnly(); |
| 4300 | if ( !pdoc->IsReadOnly() && !SelectionContainsProtected() ) { |
| 4301 | Copy(); |
| 4302 | ClearSelection(); |
| 4303 | } |
| 4304 | } |
| 4305 | |
| 4306 | void Editor::PasteRectangular ( SelectionPosition pos, const char *ptr, int len ) |
| 4307 | { |
nothing calls this directly
no test coverage detected