diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /kate/app/katesession.cpp | |
parent | 79b21d47bce1ee428affc97534cd8b257232a871 (diff) | |
download | tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kate/app/katesession.cpp')
-rw-r--r-- | kate/app/katesession.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kate/app/katesession.cpp b/kate/app/katesession.cpp index e21b9f29b..104c4abda 100644 --- a/kate/app/katesession.cpp +++ b/kate/app/katesession.cpp @@ -169,7 +169,7 @@ bool KateSession::rename (const TQString &name) m_sessionName = name; - KConfig config (sessionFile (), false, false); + TDEConfig config (sessionFile (), false, false); config.setGroup ("General"); config.writeEntry ("Name", m_sessionName); config.sync (); @@ -177,7 +177,7 @@ bool KateSession::rename (const TQString &name) return true; } -KConfig *KateSession::configRead () +TDEConfig *KateSession::configRead () { if (m_sessionFileRel.isEmpty()) return 0; @@ -188,7 +188,7 @@ KConfig *KateSession::configRead () return m_readConfig = new KSimpleConfig (sessionFile (), true); } -KConfig *KateSession::configWrite () +TDEConfig *KateSession::configWrite () { if (m_sessionFileRel.isEmpty()) return 0; @@ -288,7 +288,7 @@ void KateSessionManager::activateSession (KateSession::Ptr session, bool closeLa // open the new session Kate::Document::setOpenErrorDialogsActivated (false); - KConfig *sc = activeSession()->configRead(); + TDEConfig *sc = activeSession()->configRead(); if (sc) KateApp::self()->documentManager()->restoreDocumentList (sc); @@ -301,7 +301,7 @@ void KateSessionManager::activateSession (KateSession::Ptr session, bool closeLa // window config if (sc) { - KConfig *c = KateApp::self()->config(); + TDEConfig *c = KateApp::self()->config(); c->setGroup("General"); if (c->readBoolEntry("Restore Window Configuration", true)) @@ -371,7 +371,7 @@ bool KateSessionManager::saveActiveSession (bool tryAsk, bool rememberAsLast) if (tryAsk) { // app config - KConfig *c = KateApp::self()->config(); + TDEConfig *c = KateApp::self()->config(); c->setGroup("General"); TQString sesExit (c->readEntry ("Session Exit", "save")); @@ -407,7 +407,7 @@ bool KateSessionManager::saveActiveSession (bool tryAsk, bool rememberAsLast) } } - KConfig *sc = activeSession()->configWrite(); + TDEConfig *sc = activeSession()->configWrite(); if (!sc) return false; @@ -428,7 +428,7 @@ bool KateSessionManager::saveActiveSession (bool tryAsk, bool rememberAsLast) if (rememberAsLast) { - KConfig *c = KateApp::self()->config(); + TDEConfig *c = KateApp::self()->config(); c->setGroup("General"); c->writeEntry ("Last Session", activeSession()->sessionFileRelative()); c->sync (); @@ -442,7 +442,7 @@ bool KateSessionManager::chooseSession () bool success = true; // app config - KConfig *c = KateApp::self()->config(); + TDEConfig *c = KateApp::self()->config(); c->setGroup("General"); // get last used session, default to default session |