summaryrefslogtreecommitdiffstats
path: root/blinken/src
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-24 10:55:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-24 10:55:37 +0900
commitc5bd1f2f9a482db33b1a2e51ccec1533d1300a7d (patch)
tree7bd03edbd7a18f597d2e38ef9949d501093f6d82 /blinken/src
parentfee6e272582bd208e0d7a8a40ebc119507dd0fef (diff)
downloadtdeedu-c5bd1f2f9a482db33b1a2e51ccec1533d1300a7d.tar.gz
tdeedu-c5bd1f2f9a482db33b1a2e51ccec1533d1300a7d.zip
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'blinken/src')
-rw-r--r--blinken/src/highscoredialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/blinken/src/highscoredialog.cpp b/blinken/src/highscoredialog.cpp
index 8e994f0d..8996a3de 100644
--- a/blinken/src/highscoredialog.cpp
+++ b/blinken/src/highscoredialog.cpp
@@ -136,7 +136,7 @@ highScoreDialog::highScoreDialog(TQWidget *parent) : KDialogBase(parent, 0, true
cfg -> setGroup(TQString("Level%1").arg(i));
for (int j = 1; j <= 5; j++)
{
- m_scores[i-1].append(tqMakePair(cfg->readNumEntry(TQString("Score%1").arg(j)), cfg->readEntry(TQString("Name%1").arg(j))));
+ m_scores[i-1].append(qMakePair(cfg->readNumEntry(TQString("Score%1").arg(j)), cfg->readEntry(TQString("Name%1").arg(j))));
}
}
@@ -166,7 +166,7 @@ void highScoreDialog::addScore(int level, int score, const TQString &name)
if (it != itEnd)
{
- m_scores[level].insert(it, tqMakePair(score, name));
+ m_scores[level].insert(it, qMakePair(score, name));
m_scores[level].remove(--m_scores[level].end());
TDEConfig *cfg = kapp -> config();