From b869b8983656b12f9dee59439acfb6b3db647b72 Mon Sep 17 00:00:00 2001 From: Steru Date: Thu, 15 Aug 2024 23:27:54 +0200 Subject: Made Competitor a QObject and tidied up some code. --- src/model/MedalWinner.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/model/MedalWinner.cpp') diff --git a/src/model/MedalWinner.cpp b/src/model/MedalWinner.cpp index 4eca811..bdf6ee3 100644 --- a/src/model/MedalWinner.cpp +++ b/src/model/MedalWinner.cpp @@ -14,16 +14,16 @@ bool MedalWinner::setMedals(const QJsonObject &medals) { throw invalid_argument("Medal object of competitor is incomplete."); } - this->gold = medals["ME_GOLD"].toInt(); - this->silver = medals["ME_SILVER"].toInt(); - this->bronze = medals["ME_BRONZE"].toInt(); + this->m_gold = medals["ME_GOLD"].toInt(); + this->m_silver = medals["ME_SILVER"].toInt(); + this->m_bronze = medals["ME_BRONZE"].toInt(); return true; } /** * Static compare method, which can compare the amount of medals of two MedalWinners. - * Gold has the highest priority, then silver and finally bronze. + * Gold has the highest priority, then m_silver and finally m_bronze. * * @param lComp First competitor to compare. * @param rComp Second competitor to compare. -- cgit v1.2.3