MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / Cut

Method Cut

scintilla/src/Editor.cxx:4297–4304  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

CheckReadOnlyMethod · 0.80
IsReadOnlyMethod · 0.45

Tested by

no test coverage detected