diff options
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 46588f5f..1121eb30 100644 --- a/blinken/src/highscoredialog.cpp +++ b/blinken/src/highscoredialog.cpp @@ -130,7 +130,7 @@ highScoreDialog::highScoreDialog(TQWidget *parent) : KDialogBase(parent, 0, true m_tw = new myTabWidget(this); setMainWidget(m_tw); - KConfig *cfg = kapp -> config(); + TDEConfig *cfg = kapp -> config(); for (int i = 1; i <= 3; i++) { cfg -> setGroup(TQString("Level%1").arg(i)); @@ -169,7 +169,7 @@ void highScoreDialog::addScore(int level, int score, const TQString &name) m_scores[level].insert(it, tqMakePair(score, name)); m_scores[level].remove(--m_scores[level].end()); - KConfig *cfg = kapp -> config(); + TDEConfig *cfg = kapp -> config(); cfg -> setGroup(TQString("Level%1").arg(level + 1)); int j; for (it = m_scores[level].begin(), j = 1; it != m_scores[level].end(); ++it, j++) |