| 338 | } |
| 339 | |
| 340 | PanelWidget* |
| 341 | TabWidget::tabAt(int index) const |
| 342 | { |
| 343 | QMutexLocker l(&_imp->tabWidgetStateMutex); |
| 344 | |
| 345 | if ( (index < 0) || ( index >= (int)_imp->tabs.size() ) ) { |
| 346 | return 0; |
| 347 | } |
| 348 | |
| 349 | return _imp->tabs[index].first; |
| 350 | } |
| 351 | |
| 352 | void |
| 353 | TabWidget::tabAt(int index, |
no test coverage detected