| 2771 | } |
| 2772 | |
| 2773 | void AppWindow::CloseAppWindow() |
| 2774 | { |
| 2775 | if (m_onAppWindowClosing) |
| 2776 | { |
| 2777 | m_onAppWindowClosing(); |
| 2778 | m_onAppWindowClosing = nullptr; |
| 2779 | } |
| 2780 | if (!CloseWebView()) |
| 2781 | { |
| 2782 | return; |
| 2783 | } |
| 2784 | DestroyWindow(m_mainWindow); |
| 2785 | } |
| 2786 | |
| 2787 | void AppWindow::DeleteComponent(ComponentBase* component) |
| 2788 | { |
nothing calls this directly
no outgoing calls
no test coverage detected