diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-02-17 13:31:23 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-17 08:49:26 -0800 |
commit | 0cf2f90507c147ea6f99c1b1632dcb97ac0ab8ae (patch) | |
tree | e94cd11e924c8cee73a72cec1a39949f153d0619 /qt-ui | |
parent | 6b7b2a7427ce911d587482b57a806e200ebcd4ae (diff) | |
download | subsurface-0cf2f90507c147ea6f99c1b1632dcb97ac0ab8ae.tar.gz |
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>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/simplewidgets.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qt-ui/simplewidgets.cpp b/qt-ui/simplewidgets.cpp index d258fe7af..f8f4c2493 100644 --- a/qt-ui/simplewidgets.cpp +++ b/qt-ui/simplewidgets.cpp @@ -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(); |