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/quotajobs.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/quotajobs.h')
-rw-r--r-- | kmail/quotajobs.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/quotajobs.h b/kmail/quotajobs.h index 1db1b3d2c..3e453b504 100644 --- a/kmail/quotajobs.h +++ b/kmail/quotajobs.h @@ -123,7 +123,7 @@ class GetQuotarootJob; * @param slave Slave object the job should be assigned to * @param url URL for which to get the quotaroot */ -GetQuotarootJob* getQuotaroot( KIO::Slave* slave, const KURL& url ); +GetQuotarootJob* getQuotaroot( TDEIO::Slave* slave, const KURL& url ); class GetStorageQuotaJob; /** @@ -131,10 +131,10 @@ class GetStorageQuotaJob; * @param slave Slave object the job should be assigned to * @param url URL for which to get the storage quota */ -GetStorageQuotaJob* getStorageQuota( KIO::Slave* slave, const KURL& url ); +GetStorageQuotaJob* getStorageQuota( TDEIO::Slave* slave, const KURL& url ); /// for getQuotaroot() -class GetQuotarootJob : public KIO::SimpleJob +class GetQuotarootJob : public TDEIO::SimpleJob { Q_OBJECT @@ -157,16 +157,16 @@ signals: void quotaInfoReceived( const QuotaInfoList& info ); protected slots: - void slotInfoMessage( KIO::Job*, const TQString& ); + void slotInfoMessage( TDEIO::Job*, const TQString& ); }; /// for getStorageQuota() -class GetStorageQuotaJob : public KIO::Job +class GetStorageQuotaJob : public TDEIO::Job { Q_OBJECT public: - GetStorageQuotaJob( KIO::Slave* slave, const KURL& url ); + GetStorageQuotaJob( TDEIO::Slave* slave, const KURL& url ); /** Returns the storage quota info, if any, can be queried on result(). */ QuotaInfo storageQuotaInfo() const; |