| 4399 | } |
| 4400 | |
| 4401 | QString QsciScintilla::eolAnnotation(int line) const |
| 4402 | { |
| 4403 | char buf[2048] {0}; |
| 4404 | int size = SendScintilla(SCI_EOLANNOTATIONGETTEXT, line, buf); |
| 4405 | |
| 4406 | QString qs = bytesAsText(buf, size); |
| 4407 | return qs; |
| 4408 | } |
| 4409 | |
| 4410 | |
| 4411 | // Convert a list of styled text to the low-level arrays. |