| 57 skipped lines |
|
|
| 60 | U | 60 | U | char DocumentAccessor::StyleAt(int position) { |
|
| | | 61 | C | // Mask off all bits which aren't in the 'mask'. |
| 61 | C | return pdoc->StyleAt(position); | | 62 | C | return static_cast<char>(pdoc->StyleAt(position) & mask); |
|
|
| 64 | U | 65 | U | int DocumentAccessor::GetLine(int position) { |
|
| 23 skipped lines |
|
|
| 90 | U | 91 | U | void DocumentAccessor::StartAt(unsigned int start, char chMask) { |
|
| | | 92 | A | // Store the mask specified for use with StyleAt. |
| | | 93 | A | mask = chMask; |
| 91 | U | 94 | U | pdoc->StartStyling(start, chMask); |
|
| 92 | U | 95 | U | startPosStyling = start; |
|
|
| 91 skipped lines |