| 1346 | } |
| 1347 | |
| 1348 | void Node::stopAction(Action* action) { |
| 1349 | if (hasAction(action)) { |
| 1350 | _scheduler->unschedule(action); |
| 1351 | removeAction(action); |
| 1352 | } |
| 1353 | } |
| 1354 | |
| 1355 | void Node::pauseActionInList(Action* action) { |
| 1356 | if (action) { |
no test coverage detected