Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
5.11.3
-
None
-
-
d25b3b7f1059d5561bce3efe7ea903ea76d4e888 (qt/qtwayland/5.12)
Description
Source code is
bool QWaylandOutputMode::operator!=(const QWaylandOutputMode &other) const { return size() != other.size() || refreshRate() != refreshRate(); }
Maybe better code
bool QWaylandOutputMode::operator!=(const QWaylandOutputMode &other) const { return size() != other.size() || refreshRate() != other.refreshRate(); }