| 301 | } |
| 302 | |
| 303 | void PiuTextLink_set_state(xsMachine* the) |
| 304 | { |
| 305 | PiuTextLink* self = PIU(TextLink, xsThis); |
| 306 | PiuState state = (PiuState)xsToNumber(xsArg(0)); |
| 307 | if ((*self)->state != state) { |
| 308 | (*self)->state = state; |
| 309 | PiuContentInvalidate((*self)->container, NULL); |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | PiuTextKind PiuTextAdvance(xsMachine* the, xsSlot* string, PiuTextOffset offset, PiuTextOffset limit, PiuTextOffset *nextOffset) |
| 314 | { |
nothing calls this directly
no test coverage detected