| 1544 | } |
| 1545 | |
| 1546 | void |
| 1547 | KnobGroup::removeKnob(KnobI* k) |
| 1548 | { |
| 1549 | for (std::vector<KnobIWPtr>::iterator it = _children.begin(); it != _children.end(); ++it) { |
| 1550 | if (it->lock().get() == k) { |
| 1551 | _children.erase(it); |
| 1552 | |
| 1553 | return; |
| 1554 | } |
| 1555 | } |
| 1556 | } |
| 1557 | |
| 1558 | bool |
| 1559 | KnobGroup::moveOneStepUp(KnobI* k) |
no test coverage detected