| 105 | } |
| 106 | |
| 107 | void PiuContainerBind(void* it, PiuApplication* application, PiuView* view) |
| 108 | { |
| 109 | PiuContainer* self = it; |
| 110 | PiuContent* content = (*self)->first; |
| 111 | PiuContentBind(it, application, view); |
| 112 | (*self)->view = view; |
| 113 | while (content) { |
| 114 | (*(*content)->dispatch->bind)(content, application, view); |
| 115 | content = (*content)->next; |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | void PiuContainerBindContent(PiuContainer* self, PiuContent* content) |
| 120 | { |
nothing calls this directly
no test coverage detected