Static member function.
| 565 | |
| 566 | // Static member function. |
| 567 | void ToolManager::OnResetToolBars(const CommandContext &context) |
| 568 | { |
| 569 | auto &project = context.project; |
| 570 | auto &toolManager = ToolManager::Get( project ); |
| 571 | |
| 572 | toolManager.Reset(); |
| 573 | Get(project).ModifyToolbarMenus(project); |
| 574 | } |
| 575 | |
| 576 | |
| 577 | void ToolManager::Reset() |
nothing calls this directly
no test coverage detected