| 524 | } |
| 525 | |
| 526 | Widget *OOFAwareWidget::getWidgetOOFAtPoint (int x, int y, |
| 527 | GettingWidgetAtPointContext |
| 528 | *context) |
| 529 | { |
| 530 | Widget *widgetAtPoint = NULL; |
| 531 | |
| 532 | for (int i = NUM_OOFM -1; widgetAtPoint == NULL && i >= 0; i--) { |
| 533 | if(outOfFlowMgr[i]) |
| 534 | widgetAtPoint = outOfFlowMgr[i]->getWidgetAtPoint (x, y, context); |
| 535 | } |
| 536 | |
| 537 | return widgetAtPoint; |
| 538 | } |
| 539 | |
| 540 | void OOFAwareWidget::removeChild (Widget *child) |
| 541 | { |
nothing calls this directly
no test coverage detected