===========================================================================
| 482 | |
| 483 | //=========================================================================== |
| 484 | bool CDockAreaTabBar::isTabOpen(int Index) const |
| 485 | { |
| 486 | if (Index < 0 || Index >= count()) |
| 487 | { |
| 488 | return false; |
| 489 | } |
| 490 | |
| 491 | return !tab(Index)->isHidden(); |
| 492 | } |
| 493 | |
| 494 | |
| 495 | //=========================================================================== |
no test coverage detected