| 1090 | } |
| 1091 | |
| 1092 | Ui::Window* Window::callOnResize() |
| 1093 | { |
| 1094 | if (eventHandlers->onResize == nullptr) |
| 1095 | { |
| 1096 | return this; |
| 1097 | } |
| 1098 | |
| 1099 | eventHandlers->onResize(*this); |
| 1100 | return this; |
| 1101 | } |
| 1102 | |
| 1103 | void Window::callOnMouseHover(WidgetIndex_t widgetIndex, const WidgetId id) |
| 1104 | { |
no outgoing calls
no test coverage detected