diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:21 -0600 |
commit | 86d8364ac704bdc8ad2dfcf52307d9626cfac567 (patch) | |
tree | 97d3ac2c2f60780d9a1de4f82caac7cb27534501 /certmanager/storedtransferjob.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 'certmanager/storedtransferjob.h')
-rw-r--r-- | certmanager/storedtransferjob.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/certmanager/storedtransferjob.h b/certmanager/storedtransferjob.h index ddc687fcf..7fab77069 100644 --- a/certmanager/storedtransferjob.h +++ b/certmanager/storedtransferjob.h @@ -23,28 +23,28 @@ #include <kio/job.h> // To be moved to KIO? -namespace KIOext { +namespace TDEIOext { /** * StoredTransferJob is a TransferJob (for downloading or uploading data) that * also stores a TQByteArray with the data, making it simpler to use than the * standard TransferJob. * - * For KIO::get it puts the data into the member TQByteArray, so the user + * For TDEIO::get it puts the data into the member TQByteArray, so the user * of this class can get hold of the whole data at once by calling data() * when the result signal is emitted. * You should only use StoredTransferJob to download data if you cannot * process the data by chunks while it's being downloaded, since storing * everything in a TQByteArray can potentially require a lot of memory. * - * For KIO::put the user of this class simply provides the bytearray from + * For TDEIO::put the user of this class simply provides the bytearray from * the start, and the job takes care of uploading it. * You should only use StoredTransferJob to upload data if you cannot * provide the in chunks while it's being uploaded, since storing * everything in a TQByteArray can potentially require a lot of memory. * */ -class StoredTransferJob : public KIO::TransferJob { +class StoredTransferJob : public TDEIO::TransferJob { Q_OBJECT @@ -76,8 +76,8 @@ public: TQByteArray data() const { return m_data; } private slots: - void slotData( KIO::Job *job, const TQByteArray &data ); - void slotDataReq( KIO::Job *job, TQByteArray &data ); + void slotData( TDEIO::Job *job, const TQByteArray &data ); + void slotDataReq( TDEIO::Job *job, TQByteArray &data ); private: TQByteArray m_data; int m_uploadOffset; |