diff options
Diffstat (limited to 'kandy/src/kandy.cpp')
-rw-r--r-- | kandy/src/kandy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kandy/src/kandy.cpp b/kandy/src/kandy.cpp index 6fb5fc2ac..f7c29d0c4 100644 --- a/kandy/src/kandy.cpp +++ b/kandy/src/kandy.cpp @@ -88,7 +88,7 @@ Kandy::Kandy(CommandScheduler *scheduler) connect(mView,TQT_SIGNAL(modifiedChanged(bool)),TQT_SLOT(setTitle())); - KConfig *config = TDEGlobal::config(); + TDEConfig *config = TDEGlobal::config(); config->setGroup("General"); TQString currentProfile = config->readEntry("CurrentProfile", locate("appdata","default.kandy")); @@ -148,14 +148,14 @@ void Kandy::setupActions() createGUI(); } -void Kandy::saveProperties(KConfig */*config*/) +void Kandy::saveProperties(TDEConfig */*config*/) { // the 'config' object points to the session managed // config file. anything you write here will be available // later when this app is restored } -void Kandy::readProperties(KConfig */*config*/) +void Kandy::readProperties(TDEConfig */*config*/) { // the 'config' object points to the session managed // config file. this function is automatically called whenever |