| 2386 | } |
| 2387 | |
| 2388 | void Document::AnnotationSetStyle(Sci::Line line, int style) { |
| 2389 | Annotations()->SetStyle(line, style); |
| 2390 | const DocModification mh(SC_MOD_CHANGEANNOTATION, LineStart(line), |
| 2391 | 0, 0, 0, line); |
| 2392 | NotifyModified(mh); |
| 2393 | } |
| 2394 | |
| 2395 | void Document::AnnotationSetStyles(Sci::Line line, const unsigned char *styles) { |
| 2396 | if (line >= 0 && line < LinesTotal()) { |