| 2785 | } |
| 2786 | |
| 2787 | void AppWindow::DeleteComponent(ComponentBase* component) |
| 2788 | { |
| 2789 | for (auto iter = m_components.begin(); iter != m_components.end(); iter++) |
| 2790 | { |
| 2791 | if (iter->get() == component) |
| 2792 | { |
| 2793 | m_components.erase(iter); |
| 2794 | return; |
| 2795 | } |
| 2796 | } |
| 2797 | } |
| 2798 | |
| 2799 | void AppWindow::DeleteAllComponents() |
| 2800 | { |
no outgoing calls
no test coverage detected