| 232 | } |
| 233 | |
| 234 | Widget *Widget::getWidgetAtPointInterrupted (int x, int y, |
| 235 | GettingWidgetAtPointContext |
| 236 | *context) |
| 237 | { |
| 238 | Widget *widgetAtPoint = getWidgetAtPoint (x, y, context); |
| 239 | context->addWidgetProcessedAsInterruption (this); |
| 240 | return widgetAtPoint; |
| 241 | } |
| 242 | |
| 243 | void Widget::setParent (Widget *parent) |
| 244 | { |
no test coverage detected