| 18 | } |
| 19 | |
| 20 | TestWindow::~TestWindow() |
| 21 | { |
| 22 | MyGUI::Window* window = mMainWidget->castType<MyGUI::Window>(false); |
| 23 | if (window != nullptr) |
| 24 | window->eventWindowButtonPressed -= MyGUI::newDelegate(this, &TestWindow::notifyWindowButtonPressed); |
| 25 | } |
| 26 | |
| 27 | void TestWindow::OnInitialise(Control* _parent, MyGUI::Widget* _place, std::string_view /*_layoutName*/) |
| 28 | { |
nothing calls this directly
no test coverage detected