| 517 | } |
| 518 | |
| 519 | void Editor::SetTopLine ( int topLineNew ) |
| 520 | { |
| 521 | if ( ( topLine != topLineNew ) && ( topLineNew >= 0 ) ) { |
| 522 | topLine = topLineNew; |
| 523 | ContainerNeedsUpdate ( SC_UPDATE_V_SCROLL ); |
| 524 | } |
| 525 | posTopLine = pdoc->LineStart ( cs.DocFromDisplay ( topLine ) ); |
| 526 | } |
| 527 | |
| 528 | SelectionPosition Editor::SPositionFromLocation ( Point pt, bool canReturnInvalid, bool charPosition, bool virtualSpace ) |
| 529 | { |
nothing calls this directly
no test coverage detected