| 552 | } |
| 553 | |
| 554 | void PiuContainer_set_clip(xsMachine *the) |
| 555 | { |
| 556 | PiuContainer* self = PIU(Container, xsThis); |
| 557 | PiuContentInvalidate(self, NULL); |
| 558 | if (xsTest(xsArg(0))) |
| 559 | (*self)->flags |= piuClip; |
| 560 | else |
| 561 | (*self)->flags &= ~piuClip; |
| 562 | PiuContentInvalidate(self, NULL); |
| 563 | } |
| 564 | |
| 565 | void PiuContainer_add(xsMachine* the) |
| 566 | { |
nothing calls this directly
no test coverage detected