| 1080 | } |
| 1081 | |
| 1082 | void Window::callOnMouseUp(WidgetIndex_t widgetIndex, const WidgetId id) |
| 1083 | { |
| 1084 | if (eventHandlers->onMouseUp == nullptr) |
| 1085 | { |
| 1086 | return; |
| 1087 | } |
| 1088 | |
| 1089 | eventHandlers->onMouseUp(*this, widgetIndex, id); |
| 1090 | } |
| 1091 | |
| 1092 | Ui::Window* Window::callOnResize() |
| 1093 | { |
no outgoing calls
no test coverage detected