| 115 | } |
| 116 | |
| 117 | void ViewBarContainer::hideViewBar(QWidget* viewBar) |
| 118 | { |
| 119 | Q_D(ViewBarContainer); |
| 120 | |
| 121 | Q_ASSERT(viewBar); |
| 122 | d->layout->setCurrentWidget(viewBar); |
| 123 | viewBar->hide(); |
| 124 | |
| 125 | hide(); |
| 126 | } |
| 127 | |
| 128 | } |
| 129 |
nothing calls this directly
no test coverage detected