| 427 | } |
| 428 | |
| 429 | void PiuTextCascade(void* it) |
| 430 | { |
| 431 | PiuText* self = it; |
| 432 | PiuApplication* application = (*self)->application; |
| 433 | PiuTextUncomputeStyles(self, application, (*application)->view); |
| 434 | PiuContentCascade(it); |
| 435 | PiuTextComputeStyles(self, application, (*application)->view); |
| 436 | PiuContentInvalidate(self, NULL); |
| 437 | PiuContentReflow(self, piuSizeChanged); |
| 438 | } |
| 439 | |
| 440 | void PiuTextComputeStyles(PiuText* self, PiuApplication* application, PiuView* view) |
| 441 | { |
nothing calls this directly
no test coverage detected