| 181 | } |
| 182 | |
| 183 | void PiuScrollerFitVertically(void* it) |
| 184 | { |
| 185 | PiuScroller* self = it; |
| 186 | PiuContent* content = (*self)->first; |
| 187 | if (content) { |
| 188 | PiuContainerFitVertically(it); |
| 189 | (*self)->flags |= piuYScrolled; |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | void* PiuScrollerHit(void* it, PiuCoordinate x, PiuCoordinate y) |
| 194 | { |
nothing calls this directly
no test coverage detected