| 417 | } |
| 418 | |
| 419 | QString QHexEdit::selectionToReadableString() |
| 420 | { |
| 421 | QByteArray ba = _chunks->data(getSelectionBegin(), getSelectionEnd() - getSelectionBegin()); |
| 422 | return toReadable(ba); |
| 423 | } |
| 424 | |
| 425 | QString QHexEdit::selectedData() |
| 426 | { |
no test coverage detected