============================================================================
| 1463 | |
| 1464 | //============================================================================ |
| 1465 | bool CDockAreaWidget::isTopLevelArea() const |
| 1466 | { |
| 1467 | auto Container = dockContainer(); |
| 1468 | if (!Container) |
| 1469 | { |
| 1470 | return false; |
| 1471 | } |
| 1472 | |
| 1473 | return (Container->topLevelDockArea() == this); |
| 1474 | } |
| 1475 | |
| 1476 | |
| 1477 | //============================================================================ |
no test coverage detected