diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:21 -0600 |
commit | 86d8364ac704bdc8ad2dfcf52307d9626cfac567 (patch) | |
tree | 97d3ac2c2f60780d9a1de4f82caac7cb27534501 /korganizer/korganizer.cpp | |
parent | a9bde819f2b421dcc44741156e75eca4bb5fb4f4 (diff) | |
download | tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.tar.gz tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'korganizer/korganizer.cpp')
-rw-r--r-- | korganizer/korganizer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/korganizer/korganizer.cpp b/korganizer/korganizer.cpp index dba9c2c8b..f2ec01f2c 100644 --- a/korganizer/korganizer.cpp +++ b/korganizer/korganizer.cpp @@ -177,10 +177,10 @@ void KOrganizer::newMainWindow( const KURL &url ) void KOrganizer::readSettings() { - // read settings from the KConfig, supplying reasonable + // read settings from the TDEConfig, supplying reasonable // defaults where none are to be found - KConfig *config = KOGlobals::self()->config(); + TDEConfig *config = KOGlobals::self()->config(); mActionManager->readSettings(); @@ -192,7 +192,7 @@ void KOrganizer::writeSettings() { kdDebug(5850) << "KOrganizer::writeSettings" << endl; - KConfig *config = KOGlobals::self()->config(); + TDEConfig *config = KOGlobals::self()->config(); mActionManager->writeSettings(); config->sync(); @@ -266,12 +266,12 @@ KURL KOrganizer::getCurrentURL() const return mActionManager->url(); } -void KOrganizer::saveProperties( KConfig *config ) +void KOrganizer::saveProperties( TDEConfig *config ) { return mActionManager->saveProperties( config ); } -void KOrganizer::readProperties( KConfig *config ) +void KOrganizer::readProperties( TDEConfig *config ) { return mActionManager->readProperties( config ); } |