| 28 | } |
| 29 | |
| 30 | void ScrollView::scrollClientRectToVisible(const Rect &area) |
| 31 | { |
| 32 | assert(Application::isMainThread()); |
| 33 | |
| 34 | auto scrollCore = core<ScrollView::Core>(); |
| 35 | scrollCore->scrollClientRectToVisible(area); |
| 36 | } |
| 37 | |
| 38 | std::vector<std::shared_ptr<View>> ScrollView::childViews() const |
| 39 | { |
nothing calls this directly
no outgoing calls
no test coverage detected