| 563 | } |
| 564 | |
| 565 | void PiuScroller_scrollBy(xsMachine* the) |
| 566 | { |
| 567 | PiuScroller* self = PIU(Scroller, xsThis); |
| 568 | PiuCoordinate x = xsToPiuCoordinate(xsArg(0)); |
| 569 | PiuCoordinate y = xsToPiuCoordinate(xsArg(1)); |
| 570 | PiuScrollerScrollBy(self, x, y); |
| 571 | } |
| 572 | |
| 573 | void PiuScroller_scrollTo(xsMachine* the) |
| 574 | { |
nothing calls this directly
no test coverage detected