| 126 | } |
| 127 | |
| 128 | void QuickOpenWidget::showStandardButtons(bool show) |
| 129 | { |
| 130 | if (show) { |
| 131 | ui.okButton->show(); |
| 132 | ui.cancelButton->show(); |
| 133 | } else { |
| 134 | ui.okButton->hide(); |
| 135 | ui.cancelButton->hide(); |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | bool QuickOpenWidget::sortingEnabled() const |
| 140 | { |
no test coverage detected