-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecation warnings when compiling with Qt 5.15 #77
Open
ahndee opened this issue
May 27, 2020
· 2 comments
· Fixed by maxwell130631/SortFilterProxyModel#1, CasparKielwein/SortFilterProxyModel#1 or milosolutions/SortFilterProxyModel#1 · May be fixed by #81
Open
Deprecation warnings when compiling with Qt 5.15 #77
ahndee opened this issue
May 27, 2020
· 2 comments
· Fixed by maxwell130631/SortFilterProxyModel#1, CasparKielwein/SortFilterProxyModel#1 or milosolutions/SortFilterProxyModel#1 · May be fixed by #81
Comments
Perhaps |
It is better to solve this problem before it causes more serious problems! |
olafmandel
added a commit
to MenloSystems/SortFilterProxyModel
that referenced
this issue
Oct 27, 2020
Qt 5.15 deprecated the operator<(QVariant, QVariant). Do get rid of the warning and to prepare for the eventual removal of the operator, implement our own needs in a lessThan() function. The function is based on the description of QSortFilterProxyModel::lessThan(). Fixes oKcerG#77
olafmandel
added a commit
to MenloSystems/SortFilterProxyModel
that referenced
this issue
Oct 27, 2020
Qt 5.15 deprecated the operator<(QVariant, QVariant). Do get rid of the warning and to prepare for the eventual removal of the operator, implement our own needs in a lessThan() function. The function is based on the description of QSortFilterProxyModel::lessThan(). Fixes oKcerG#77
ghost
mentioned this issue
Mar 30, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The text was updated successfully, but these errors were encountered: