| 305 | } |
| 306 | |
| 307 | void SCI_METHOD Document::SetErrorStatus(int status) { |
| 308 | // Tell the watchers an error has occurred. |
| 309 | for (std::vector<WatcherWithUserData>::iterator it = watchers.begin(); it != watchers.end(); ++it) { |
| 310 | it->watcher->NotifyErrorOccurred(this, it->userData, status); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | int SCI_METHOD Document::LineFromPosition(int pos) const { |
| 315 | return cb.LineFromPosition(pos); |
no test coverage detected