diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 00:36:34 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 00:36:34 -0600 |
commit | 12f3d421cd2991c0e3f96994efb836ce244172ff (patch) | |
tree | 1e5bd5e8b7521fe66d77c13b7df45df7d5f6dcd6 /tdecore/tdeconfig.h | |
parent | 21bc7541114fb026606284e45dc10e3320f39f1d (diff) | |
download | tdelibs-12f3d421cd2991c0e3f96994efb836ce244172ff.tar.gz tdelibs-12f3d421cd2991c0e3f96994efb836ce244172ff.zip |
Rename KShared
Diffstat (limited to 'tdecore/tdeconfig.h')
-rw-r--r-- | tdecore/tdeconfig.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tdecore/tdeconfig.h b/tdecore/tdeconfig.h index 77a009efa..59f784107 100644 --- a/tdecore/tdeconfig.h +++ b/tdecore/tdeconfig.h @@ -267,14 +267,14 @@ private: /** * TDEConfig variant using shared memory * - * KSharedConfig provides a reference counted, shared memory variant + * TDESharedConfig provides a reference counted, shared memory variant * of TDEConfig. */ -class TDECORE_EXPORT KSharedConfig : public TDEConfig, public KShared +class TDECORE_EXPORT TDESharedConfig : public TDEConfig, public TDEShared { - friend class TQValueList<KSharedConfig*>; + friend class TQValueList<TDESharedConfig*>; public: - typedef KSharedPtr<KSharedConfig> Ptr; + typedef TDESharedPtr<TDESharedConfig> Ptr; public: /** @@ -283,14 +283,14 @@ public: * @param readOnly set the config object's read-only status * @param bUseKDEGlobals Toggle reading the global KDE configuration file. */ - static KSharedConfig::Ptr openConfig(const TQString& fileName, bool readOnly = false, + static TDESharedConfig::Ptr openConfig(const TQString& fileName, bool readOnly = false, bool bUseKDEGlobals = true); private: - KSharedConfig( const TQString& fileName, bool readOnly, bool useKDEGlobals ); - ~KSharedConfig(); + TDESharedConfig( const TQString& fileName, bool readOnly, bool useKDEGlobals ); + ~TDESharedConfig(); - static TQValueList<KSharedConfig*> *s_list; + static TQValueList<TDESharedConfig*> *s_list; }; #endif |