summaryrefslogtreecommitdiffstats
path: root/libksirtet/common/highscores.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-12-17 18:14:14 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-12-26 12:21:29 +0900
commit66d79f336d99facc0bf744cee7edc25ded569347 (patch)
tree5ac3c507008eb4e64f56350651ed3a65cb873749 /libksirtet/common/highscores.cpp
parent282e2390be25b960ef1a35444be19e5a168ada62 (diff)
downloadtdegames-master.tar.gz
tdegames-master.zip
Remove worldwide scores logic completelyHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libksirtet/common/highscores.cpp')
-rw-r--r--libksirtet/common/highscores.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/libksirtet/common/highscores.cpp b/libksirtet/common/highscores.cpp
index afb1bd3e..ee84242c 100644
--- a/libksirtet/common/highscores.cpp
+++ b/libksirtet/common/highscores.cpp
@@ -50,11 +50,3 @@ bool CommonHighscores::isStrictlyLess(const Score &s1, const Score &s2) const
else return l1<l2;
} else return BaseHighscores::isStrictlyLess(s1, s2);
}
-
-void CommonHighscores::additionalQueryItems(KURL &url, const Score &s) const
-{
- uint l = s.data("level").toUInt();
- addToQueryURL(url, "scoreLevel", TQString::number(l));
- uint r = s.data("removed").toUInt();
- addToQueryURL(url, "scoreRemoved", TQString::number(r));
-}