| 108 | } |
| 109 | |
| 110 | QSize AreaDisplay::minimumSizeHint() const |
| 111 | { |
| 112 | QSize hint = QWidget::minimumSizeHint(); |
| 113 | hint = hint.boundedTo(QSize(hint.width(), m_mainWindow->menuBar()->height()-1)); |
| 114 | return hint; |
| 115 | } |
| 116 | |
| 117 | QSize AreaDisplay::sizeHint() const |
| 118 | { |
nothing calls this directly
no test coverage detected