--------------------------------- EditorAppWindow::d-tor
| 92 | // EditorAppWindow::d-tor |
| 93 | // |
| 94 | EditorAppWindow::~EditorAppWindow() |
| 95 | { |
| 96 | // Destroy all editors |
| 97 | for (T_EditorFramePair& pair : m_Editors) |
| 98 | { |
| 99 | SafeDelete(pair.first); // frame widget and children will automatically be deleted as it is managed by GTK |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | //static |
| 104 | //--------------------------------- |
nothing calls this directly
no test coverage detected