citra_qt: Drop Qt 5 version checks in code

We don't support Qt 4.x anymore.
This commit is contained in:
Lioncash 2017-12-16 13:23:42 -05:00
parent 125f5d1e68
commit 9ec0609ae5
No known key found for this signature in database
GPG key ID: 419930C33C5AB6CC
2 changed files with 1 additions and 18 deletions

View file

@ -192,12 +192,7 @@ GPUCommandListWidget::GPUCommandListWidget(QWidget* parent)
list_widget->setFont(GetMonospaceFont());
list_widget->setRootIsDecorated(false);
list_widget->setUniformRowHeights(true);
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
list_widget->header()->setSectionResizeMode(QHeaderView::ResizeToContents);
#else
list_widget->header()->setResizeMode(QHeaderView::ResizeToContents);
#endif
connect(list_widget->selectionModel(),
SIGNAL(currentChanged(const QModelIndex&, const QModelIndex&)), this,