diff options
author | Lioncash <mathew1800@gmail.com> | 2020-12-05 15:38:55 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-12-05 15:38:58 -0500 |
commit | c277d7d171f32a7a7cbe91063c5ae32cca5f4ad6 (patch) | |
tree | 1ac09f1bcaa49ca7d49c6e0206f4b7fe309438d3 /src/yuzu/game_list_p.h | |
parent | f2f346e1104106eb9323f0e141e0e67312c29849 (diff) |
game_list_p: Resolve deprecated usage of QVariant operator<
This is designated as obsolete in Qt's docs (see:
https://doc.qt.io/qt-5/qvariant-obsolete.html#operator-lt)
Diffstat (limited to 'src/yuzu/game_list_p.h')
-rw-r--r-- | src/yuzu/game_list_p.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/game_list_p.h b/src/yuzu/game_list_p.h index 248855aff..df935022d 100644 --- a/src/yuzu/game_list_p.h +++ b/src/yuzu/game_list_p.h @@ -174,7 +174,8 @@ public: } bool operator<(const QStandardItem& other) const override { - return data(CompatNumberRole) < other.data(CompatNumberRole); + return data(CompatNumberRole).value<QString>() < + other.data(CompatNumberRole).value<QString>(); } }; |