oKcerG / SortFilterProxyModel

A nicely exposed QSortFilterProxyModel for QML
MIT License
298 stars 101 forks source link

Deprecation warnings when compiling with Qt 5.15 #77

Open ahndee opened 4 years ago

ahndee commented 4 years ago

Qt 5.15 deprecated the comparison operators (<,>,<=,>=) for QVariant (see official documentation) which are used in rangefilter.cpp and rolesorter.cpp, resulting in compile-time warnings.

timangus commented 4 years ago

Perhaps QSortFilterProxyModel::lessThan or the implementation of QAbstractItemModelPrivate::isVariantLessThan is useful here?

TheCompez commented 4 years ago

It is better to solve this problem before it causes more serious problems!