diff options
Diffstat (limited to 'ksnake/game.cpp')
-rw-r--r-- | ksnake/game.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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"); |