| 479 | } |
| 480 | |
| 481 | void ScrollView::performedAnimatedScroll(float /*dt*/) |
| 482 | { |
| 483 | if (_dragging) |
| 484 | { |
| 485 | this->unschedule(AX_SCHEDULE_SELECTOR(ScrollView::performedAnimatedScroll)); |
| 486 | return; |
| 487 | } |
| 488 | |
| 489 | if (_delegate != nullptr) |
| 490 | { |
| 491 | _delegate->scrollViewDidScroll(this); |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | const Size& ScrollView::getContentSize() const |
| 496 | { |
nothing calls this directly
no test coverage detected