()
| 863 | } |
| 864 | |
| 865 | int copyAll() { |
| 866 | selectAll(); |
| 867 | int count = selEnd - selStart + 1; |
| 868 | if (count>0) |
| 869 | copySelection(); |
| 870 | resetSelection(); |
| 871 | unsavedLines = false; |
| 872 | return count; |
| 873 | } |
| 874 | |
| 875 | void cutSelection() { |
| 876 | if (selStart==-1 || selEnd==-1) |
no test coverage detected