| 327 | |
| 328 | char CharAt(int position) { return cb.CharAt(position); } |
| 329 | void SCI_METHOD GetCharRange(char *buffer, int position, int lengthRetrieve) const { |
| 330 | cb.GetCharRange(buffer, position, lengthRetrieve); |
| 331 | } |
| 332 | char SCI_METHOD StyleAt(int position) const { return cb.StyleAt(position); } |
| 333 | void GetStyleRange(unsigned char *buffer, int position, int lengthRetrieve) const { |
| 334 | cb.GetStyleRange(buffer, position, lengthRetrieve); |
nothing calls this directly
no outgoing calls
no test coverage detected