diff options
Diffstat (limited to 'ksnake')
-rw-r--r-- | ksnake/ChangeLog | 2 | ||||
-rw-r--r-- | ksnake/game.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ksnake/ChangeLog b/ksnake/ChangeLog index 58991c06..5e6f0ca0 100644 --- a/ksnake/ChangeLog +++ b/ksnake/ChangeLog @@ -1,6 +1,6 @@ Version 0.4.0: * [Benjamin Meyer] Changed to use KDE highscore widget. - * [Benjamin Meyer] Changed to use KConfigXT and a configure dialog. + * [Benjamin Meyer] Changed to use TDEConfigXT and a configure dialog. * [Benjamin Meyer] Removed unnecessary classes. * [Benjamin Meyer] Lots of general code cleanup (headers/indentation/variable naming). * [Benjamin Meyer] Added copyright headers to all of the source files. diff --git a/ksnake/game.cpp b/ksnake/game.cpp index dfae1a4b..e2ac41d3 100644 --- a/ksnake/game.cpp +++ b/ksnake/game.cpp @@ -144,10 +144,10 @@ void Game::togglePaused() * Show Settings dialog. */ void Game::showSettings(){ - if(KConfigDialog::showDialog("settings")) + if(TDEConfigDialog::showDialog("settings")) return; - KConfigDialog *dialog = new KConfigDialog(this, "settings", Settings::self()); + TDEConfigDialog *dialog = new TDEConfigDialog(this, "settings", Settings::self()); dialog->addPage(new General(0, "General"), i18n("General"), "package_settings"); Appearance *a = new Appearance(0, "Appearance"); |