| 88 | } |
| 89 | |
| 90 | void DockWidget::showEvent(QShowEvent *event) { |
| 91 | if (event->spontaneous()) { |
| 92 | return; |
| 93 | } |
| 94 | if (m_tabs != this) { |
| 95 | m_tabs->updateExpandability(m_tabs->tabs(this)); |
| 96 | } |
| 97 | updateExpandability(tabs()); |
| 98 | } |
| 99 | |
| 100 | void DockWidget::updateExpandability(const QList<DockWidget *> &tabs) { |
| 101 | bool expandable = false; |
nothing calls this directly
no test coverage detected