| 509 | } |
| 510 | |
| 511 | void ZepEditor::SetCurrentWindow(ZepWindow* pWindow) { |
| 512 | if (!pWindow) { |
| 513 | return; |
| 514 | } |
| 515 | auto& tab = pWindow->GetTabWindow(); |
| 516 | tab.SetActiveWindow(pWindow); |
| 517 | |
| 518 | SetCurrentTabWindow(&tab); |
| 519 | } |
| 520 | |
| 521 | void ZepEditor::SetCurrentTabWindow(ZepTabWindow* pTabWindow) { |
| 522 | // Sanity |
nothing calls this directly
no test coverage detected