| 159 | } |
| 160 | |
| 161 | void PiuScrollerDictionary(xsMachine* the, void* it) |
| 162 | { |
| 163 | PiuScroller* self = it; |
| 164 | xsBooleanValue boolean; |
| 165 | if (xsFindBoolean(xsArg(1), xsID_looping, &boolean)) { |
| 166 | if (boolean) |
| 167 | (*self)->flags |= piuLooping; |
| 168 | else |
| 169 | (*self)->flags &= ~piuLooping; |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | void PiuScrollerFitHorizontally(void* it) |
| 174 | { |
no outgoing calls
no test coverage detected