diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:37:21 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:37:21 -0600 |
commit | 86d8364ac704bdc8ad2dfcf52307d9626cfac567 (patch) | |
tree | 97d3ac2c2f60780d9a1de4f82caac7cb27534501 /kmail/networkaccount.h | |
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 'kmail/networkaccount.h')
-rw-r--r-- | kmail/networkaccount.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kmail/networkaccount.h b/kmail/networkaccount.h index 112cc71d2..dd62b0cdc 100644 --- a/kmail/networkaccount.h +++ b/kmail/networkaccount.h @@ -34,9 +34,9 @@ #include <tqstring.h> class AccountManager; -class KConfig/*Base*/; +class TDEConfig/*Base*/; class KURL; -namespace KIO { +namespace TDEIO { class Slave; class MetaData; } @@ -99,16 +99,16 @@ namespace KMail { virtual void setSieveConfig( const KMail::SieveConfig & config ); /** Configure the slave by adding to the meta data map */ - virtual KIO::MetaData slaveConfig() const; + virtual TDEIO::MetaData slaveConfig() const; - virtual void readConfig( /*const*/ KConfig/*Base*/ & config ); - virtual void writeConfig( KConfig/*Base*/ & config ) /*const*/; + virtual void readConfig( /*const*/ TDEConfig/*Base*/ & config ); + virtual void writeConfig( TDEConfig/*Base*/ & config ) /*const*/; /** @return an URL for this account */ virtual KURL getUrl() const; /** @return the KIO slave for this account */ - KIO::Slave * slave() const { return mSlave; } + TDEIO::Slave * slave() const { return mSlave; } /** Kill all jobs that are currently in progress */ virtual void killAllJobs( bool disconnectSlave = false ) = 0; @@ -128,7 +128,7 @@ namespace KMail { protected: KMail::SieveConfig mSieveConfig; - TQGuardedPtr<KIO::Slave> mSlave; + TQGuardedPtr<TDEIO::Slave> mSlave; TQString mLogin, mPasswd, mAuth, mHost; unsigned short int mPort; bool mStorePasswd : 1; |