summaryrefslogtreecommitdiffstats
path: root/ksnake
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:32:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:32:59 -0600
commit2f84d0e2d3d4252e6aee24aceafa45dbdb7f4d1d (patch)
treeea24a96bad3bb7356ec1a2dca2a1338692d79745 /ksnake
parentd6f3812c8d969a673b420beca2482804177704fb (diff)
downloadtdegames-2f84d0e2d3d4252e6aee24aceafa45dbdb7f4d1d.tar.gz
tdegames-2f84d0e2d3d4252e6aee24aceafa45dbdb7f4d1d.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'ksnake')
-rw-r--r--ksnake/ChangeLog2
-rw-r--r--ksnake/game.cpp4
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");