diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:32:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:32:59 -0600 |
commit | 2f84d0e2d3d4252e6aee24aceafa45dbdb7f4d1d (patch) | |
tree | ea24a96bad3bb7356ec1a2dca2a1338692d79745 /kolf/canvasitem.h | |
parent | d6f3812c8d969a673b420beca2482804177704fb (diff) | |
download | tdegames-2f84d0e2d3d4252e6aee24aceafa45dbdb7f4d1d.tar.gz tdegames-2f84d0e2d3d4252e6aee24aceafa45dbdb7f4d1d.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kolf/canvasitem.h')
-rw-r--r-- | kolf/canvasitem.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kolf/canvasitem.h b/kolf/canvasitem.h index 6b789dfa..2b1bd1b4 100644 --- a/kolf/canvasitem.h +++ b/kolf/canvasitem.h @@ -6,7 +6,7 @@ #include "config.h" class Ball; -class KConfig; +class TDEConfig; class StateDB; class KolfGame; @@ -16,9 +16,9 @@ public: CanvasItem() { game = 0; } virtual ~CanvasItem() {} /** - * load your settings from the KConfig, which represents a course. + * load your settings from the TDEConfig, which represents a course. */ - virtual void load(KConfig *) {} + virtual void load(TDEConfig *) {} /** * load a point if you wish. Rarely necessary. */ @@ -38,7 +38,7 @@ public: /** * save your settings. */ - virtual void save(KConfig *cfg); + virtual void save(TDEConfig *cfg); /** * save a point if you wish. Rarely necessary. */ |