| 86 | } |
| 87 | |
| 88 | void Workspace::setActiveView(WorkspaceView* view) |
| 89 | { |
| 90 | m_activePanel = getViewPanel(view); |
| 91 | ASSERT(m_activePanel); |
| 92 | if (!m_activePanel) |
| 93 | return; |
| 94 | |
| 95 | m_activePanel->setActiveView(view); |
| 96 | |
| 97 | ActiveViewChanged(); // Fire ActiveViewChanged event |
| 98 | } |
| 99 | |
| 100 | void Workspace::setMainPanelAsActive() |
| 101 | { |
no outgoing calls
no test coverage detected