| 431 | }; |
| 432 | |
| 433 | void invertSelection(const cmd::ArgumentList& args) |
| 434 | { |
| 435 | if (GlobalSelectionSystem().getSelectionMode() == SelectionMode::Component) |
| 436 | { |
| 437 | InvertComponentSelectionWalker walker(GlobalSelectionSystem().ComponentMode()); |
| 438 | GlobalSceneGraph().root()->traverse(walker); |
| 439 | } |
| 440 | else |
| 441 | { |
| 442 | InvertSelectionWalker walker(GlobalSelectionSystem().getSelectionMode()); |
| 443 | GlobalSceneGraph().root()->traverse(walker); |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | void deleteSelection() |
| 448 | { |
nothing calls this directly
no test coverage detected