diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-24 10:55:37 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-25 01:08:40 +0900 |
| commit | 79ebc59cc17d520d3233ff88f815e0244e8ed5b0 (patch) | |
| tree | cfe5066a2ef7155535286a89b35f54c643c06cab /blinken/src/highscoredialog.cpp | |
| parent | b2b98c0bf3af9d6250fee31ab6de989c075473b0 (diff) | |
| download | tdeedu-79ebc59c.tar.gz tdeedu-79ebc59c.zip | |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c5bd1f2f9a482db33b1a2e51ccec1533d1300a7d)
Diffstat (limited to 'blinken/src/highscoredialog.cpp')
| -rw-r--r-- | blinken/src/highscoredialog.cpp | 4 |
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(); |
