| 256 | } |
| 257 | |
| 258 | void ProtectedNode::sortAllProtectedChildren() |
| 259 | { |
| 260 | if (_reorderProtectedChildDirty) |
| 261 | { |
| 262 | sortNodes(_protectedChildren); |
| 263 | _reorderProtectedChildDirty = false; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | void ProtectedNode::reorderProtectedChild(ax::Node* child, int localZOrder) |
| 268 | { |
no test coverage detected