Sets the position from which to draw to (x,y).
| 523 | |
| 524 | // Sets the position from which to draw to (x,y). |
| 525 | void ScrollView::SetCursor(int x, int y) { |
| 526 | SendPolygon(); |
| 527 | DrawTo(x, y); |
| 528 | } |
| 529 | |
| 530 | // Draws from the current position to (x,y) and sets the new position to it. |
| 531 | void ScrollView::DrawTo(int x, int y) { |
no outgoing calls
no test coverage detected