| 1367 | } |
| 1368 | |
| 1369 | void Node::stopActionInList(Action* action) { |
| 1370 | if (action) { |
| 1371 | Ref<> ref(action); |
| 1372 | stopActionInList(action->_next); |
| 1373 | _scheduler->unschedule(action); |
| 1374 | removeAction(action); |
| 1375 | } |
| 1376 | } |
| 1377 | |
| 1378 | Size Node::alignItemsVertically(float padding) { |
| 1379 | return alignItemsVertically(getSize(), padding); |
nothing calls this directly
no test coverage detected