simplewidgets.cpp: QLineEdit::setClearButtonEnabled() is from Qt5.2

This could cause problems if the user tries to compile with
Qt versions between 5.0 and 5.2.

Reported-by: Michele Fabi <fabiemme@gmail.com>
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Lubomir I. Ivanov 2015-02-17 13:31:23 +02:00 committed by Dirk Hohndel
parent 6b7b2a7427
commit 0cf2f90507

View file

@ -494,7 +494,7 @@ TagFilter::TagFilter(QWidget *parent) : QWidget(parent)
{
ui.setupUi(this);
ui.label->setText(tr("Tags: "));
#if QT_VERSION >= 0x050000
#if QT_VERSION >= 0x050200
ui.filterInternalList->setClearButtonEnabled(true);
#endif
QSortFilterProxyModel *filter = new QSortFilterProxyModel();
@ -521,7 +521,7 @@ BuddyFilter::BuddyFilter(QWidget *parent) : QWidget(parent)
ui.setupUi(this);
ui.label->setText(tr("Person: "));
ui.label->setToolTip(tr("Searches for buddies and divemasters"));
#if QT_VERSION >= 0x050000
#if QT_VERSION >= 0x050200
ui.filterInternalList->setClearButtonEnabled(true);
#endif
QSortFilterProxyModel *filter = new QSortFilterProxyModel();
@ -547,7 +547,7 @@ LocationFilter::LocationFilter(QWidget *parent) : QWidget(parent)
{
ui.setupUi(this);
ui.label->setText(tr("Location: "));
#if QT_VERSION >= 0x050000
#if QT_VERSION >= 0x050200
ui.filterInternalList->setClearButtonEnabled(true);
#endif
QSortFilterProxyModel *filter = new QSortFilterProxyModel();
@ -573,7 +573,7 @@ SuitFilter::SuitFilter(QWidget *parent) : QWidget(parent)
{
ui.setupUi(this);
ui.label->setText(tr("Suits: "));
#if QT_VERSION >= 0x050000
#if QT_VERSION >= 0x050200
ui.filterInternalList->setClearButtonEnabled(true);
#endif
QSortFilterProxyModel *filter = new QSortFilterProxyModel();