* Copies the selected text to the clipboard and deletes it from the text edit. * If there is no selected text nothing happens. */
| 420 | * If there is no selected text nothing happens. |
| 421 | */ |
| 422 | void EditorView::cut() |
| 423 | { |
| 424 | d->textEdit->cut(); |
| 425 | } |
| 426 | |
| 427 | /** |
| 428 | * Copies any selected text to the clipboard. |