diff --git a/src/frontends/qt/CategorizedCombo.cpp b/src/frontends/qt/CategorizedCombo.cpp index ac4b45068f..0482e1c874 100644 --- a/src/frontends/qt/CategorizedCombo.cpp +++ b/src/frontends/qt/CategorizedCombo.cpp @@ -287,7 +287,11 @@ void CategorizedCombo::Private::setFilter(QString const & s) lastSel_ = filterModel_->mapToSource(filterModel_->index(sel, 0)).row(); filter_ = s; +#if QT_VERSION < QT_VERSION_CHECK(5, 12, 0) + filterModel_->setFilterRegExp(charFilterRegExp(filter_)); +#else filterModel_->setFilterRegularExpression(charFilterRegExp(filter_)); +#endif countCategories(); // restore old selection diff --git a/src/frontends/qt/LayoutBox.cpp b/src/frontends/qt/LayoutBox.cpp index ab2cd7a085..435bd47835 100644 --- a/src/frontends/qt/LayoutBox.cpp +++ b/src/frontends/qt/LayoutBox.cpp @@ -320,7 +320,11 @@ void LayoutBox::Private::setFilter(QString const & s) lastSel_ = filterModel_->mapToSource(filterModel_->index(sel, 0)).row(); filter_ = s; +#if QT_VERSION < QT_VERSION_CHECK(5, 12, 0) + filterModel_->setFilterRegExp(charFilterRegExp(filter_)); +#else filterModel_->setFilterRegularExpression(charFilterRegExp(filter_)); +#endif countCategories(); // restore old selection