diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:35:07 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:35:07 -0600 |
commit | 703fb0c89c2eee56a1e613e67a446db9d4287929 (patch) | |
tree | dd8c5ca66075cd89c2638a2b48cf78386a9870a7 /tdecore/kconfigbackend.h | |
parent | 818e7abec3d5d3809b6b77293558678371c16b71 (diff) | |
download | tdelibs-703fb0c89c2eee56a1e613e67a446db9d4287929.tar.gz tdelibs-703fb0c89c2eee56a1e613e67a446db9d4287929.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'tdecore/kconfigbackend.h')
-rw-r--r-- | tdecore/kconfigbackend.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/tdecore/kconfigbackend.h b/tdecore/kconfigbackend.h index 03655ab2d..87ddfa3bb 100644 --- a/tdecore/kconfigbackend.h +++ b/tdecore/kconfigbackend.h @@ -29,7 +29,7 @@ #include "tdelibs_export.h" class TQFile; -class KConfigBackEndPrivate; +class TDEConfigBackEndPrivate; /** * Abstract base class for KDE configuration file loading/saving. @@ -45,9 +45,9 @@ class KConfigBackEndPrivate; * Matthias Kalle Dalheimer <kalle@kde.org> * @short KDE Configuration file loading/saving abstract base class */ -class TDECORE_EXPORT KConfigBackEnd +class TDECORE_EXPORT TDEConfigBackEnd { - friend class KConfig; + friend class TDEConfig; friend class KSharedConfig; public: /** @@ -65,13 +65,13 @@ public: * will be imported into the config object. If false, only * the filename specified will be dealt with. */ - KConfigBackEnd(KConfigBase *_config, const TQString &_fileName, + TDEConfigBackEnd(TDEConfigBase *_config, const TQString &_fileName, const char * _resType, bool _useKDEGlobals); /** * Destructs the configuration backend. */ - virtual ~KConfigBackEnd(); + virtual ~TDEConfigBackEnd(); /** * Parses all configuration files for a configuration object. This @@ -108,9 +108,9 @@ public: /** * Returns the state of the app-config object. * - * @see KConfig::getConfigState + * @see TDEConfig::getConfigState */ - virtual KConfigBase::ConfigState getConfigState() const + virtual TDEConfigBase::ConfigState getConfigState() const { return mConfigState; } /** @@ -162,7 +162,7 @@ private: KDE_DEPRECATED TQString filename() const { return mfileName; } protected: - KConfigBase *pConfig; + TDEConfigBase *pConfig; TQString mfileName; TQCString resType; @@ -171,14 +171,14 @@ protected: TQCString localeString; TQString mLocalFileName; TQString mGlobalFileName; - KConfigBase::ConfigState mConfigState; + TDEConfigBase::ConfigState mConfigState; int mFileMode; protected: virtual void virtual_hook( int id, void* data ); protected: - class KConfigBackEndPrivate; - KConfigBackEndPrivate *d; + class TDEConfigBackEndPrivate; + TDEConfigBackEndPrivate *d; }; @@ -188,7 +188,7 @@ protected: * @author Preston Brown <pbrown@kde.org>, * Matthias Kalle Dalheimer <kalle@kde.org> */ -class TDECORE_EXPORT KConfigINIBackEnd : public KConfigBackEnd +class TDECORE_EXPORT TDEConfigINIBackEnd : public TDEConfigBackEnd { public: @@ -207,14 +207,14 @@ public: * will be imported into the config object. If false, only * the filename specified will be dealt with. */ - KConfigINIBackEnd(KConfigBase *_config, const TQString &_fileName, + TDEConfigINIBackEnd(TDEConfigBase *_config, const TQString &_fileName, const char * _resType, bool _useKDEGlobals = true) - : KConfigBackEnd(_config, _fileName, _resType, _useKDEGlobals) {} + : TDEConfigBackEnd(_config, _fileName, _resType, _useKDEGlobals) {} /** * Destructs the configuration backend. */ - virtual ~KConfigINIBackEnd() {} + virtual ~TDEConfigINIBackEnd() {} /** * Parses all INI-style configuration files for a config object. @@ -292,8 +292,8 @@ protected: protected: virtual void virtual_hook( int id, void* data ); private: - class KConfigINIBackEndPrivate; - KConfigINIBackEndPrivate *not_d; + class TDEConfigINIBackEndPrivate; + TDEConfigINIBackEndPrivate *not_d; }; #endif |