aboutsummaryrefslogtreecommitdiff
path: root/launcher/meta/VersionList.cpp
diff options
context:
space:
mode:
authorTrial97 <alexandru.tripon97@gmail.com>2023-06-07 20:18:36 +0300
committerTrial97 <alexandru.tripon97@gmail.com>2023-06-07 20:18:36 +0300
commit8abe6b6732aa18b49199755c89dcedb90ae9c4b6 (patch)
tree9c3d130d220caac170ce13adf7b90e816397e01c /launcher/meta/VersionList.cpp
parente936bc4c60b4262cd70ff1eb3291dc3ead4c53ac (diff)
parent9b9d439fce9408712a594bb294e3bd5f108e31bc (diff)
downloadPrismLauncher-8abe6b6732aa18b49199755c89dcedb90ae9c4b6.tar.gz
PrismLauncher-8abe6b6732aa18b49199755c89dcedb90ae9c4b6.tar.bz2
PrismLauncher-8abe6b6732aa18b49199755c89dcedb90ae9c4b6.zip
Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into visit_mod_page
Diffstat (limited to 'launcher/meta/VersionList.cpp')
-rw-r--r--launcher/meta/VersionList.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/meta/VersionList.cpp b/launcher/meta/VersionList.cpp
index 7f001dfc..9f448278 100644
--- a/launcher/meta/VersionList.cpp
+++ b/launcher/meta/VersionList.cpp
@@ -77,7 +77,7 @@ QVariant VersionList::data(const QModelIndex &index, int role) const
case ParentVersionRole:
{
// FIXME: HACK: this should be generic and be replaced by something else. Anything that is a hard 'equals' dep is a 'parent uid'.
- auto & reqs = version->requires();
+ auto & reqs = version->requiredSet();
auto iter = std::find_if(reqs.begin(), reqs.end(), [](const Require & req)
{
return req.uid == "net.minecraft";
@@ -92,7 +92,7 @@ QVariant VersionList::data(const QModelIndex &index, int role) const
case UidRole: return version->uid();
case TimeRole: return version->time();
- case RequiresRole: return QVariant::fromValue(version->requires());
+ case RequiresRole: return QVariant::fromValue(version->requiredSet());
case SortRole: return version->rawTime();
case VersionPtrRole: return QVariant::fromValue(version);
case RecommendedRole: return version->isRecommended();