diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 00:38:29 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 00:38:29 -0600 |
commit | 0922423eb834afb70e3323db43062cf4083dc298 (patch) | |
tree | 34139e93c015c1ff703babf23cc3399103f9b909 /kmail | |
parent | eda50d1bce626f021f5aef550280f7e6638e9832 (diff) | |
download | tdepim-0922423eb834afb70e3323db43062cf4083dc298.tar.gz tdepim-0922423eb834afb70e3323db43062cf4083dc298.zip |
Rename KShared
Diffstat (limited to 'kmail')
-rw-r--r-- | kmail/kmkernel.cpp | 4 | ||||
-rw-r--r-- | kmail/kmkernel.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kmail/kmkernel.cpp b/kmail/kmkernel.cpp index 1761a7629..4ca2440c5 100644 --- a/kmail/kmkernel.cpp +++ b/kmail/kmkernel.cpp @@ -132,7 +132,7 @@ KMKernel::KMKernel (TQObject *parent, const char *name) : // make sure that we check for config updates before doing anything else KMKernel::config(); - // this shares the kmailrc parsing too (via KSharedConfig), and reads values from it + // this shares the kmailrc parsing too (via TDESharedConfig), and reads values from it // so better do it here, than in some code where changing the group of config() // would be unexpected GlobalSettings::self(); @@ -2291,7 +2291,7 @@ TDEConfig* KMKernel::config() assert(mySelf); if (!mySelf->mConfig) { - mySelf->mConfig = KSharedConfig::openConfig( "kmailrc" ); + mySelf->mConfig = TDESharedConfig::openConfig( "kmailrc" ); // Check that all updates have been run on the config file: KMail::checkConfigUpdates(); } diff --git a/kmail/kmkernel.h b/kmail/kmkernel.h index 5d80d659d..748ec6809 100644 --- a/kmail/kmkernel.h +++ b/kmail/kmkernel.h @@ -487,7 +487,7 @@ private: bool the_firstInstance; bool mMailCheckAborted; static KMKernel *mySelf; - KSharedConfig::Ptr mConfig; + TDESharedConfig::Ptr mConfig; TQTextCodec *netCodec; TDEInstance* mXmlGuiInstance; ConfigureDialog *mConfigureDialog; |