summaryrefslogtreecommitdiffstats
path: root/src/fetch/yahoofetcher.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-25 00:14:31 -0600
committerTimothy Pearson <[email protected]>2013-01-25 00:14:31 -0600
commit145d30f0b8cbacc3599379e8717299734f3bb534 (patch)
tree3713677dce079619063612b12788282fd32e53af /src/fetch/yahoofetcher.cpp
parent5b6d393e0a2c88cce8f433607c091ae883ef54f9 (diff)
downloadtellico-145d30f0b8cbacc3599379e8717299734f3bb534.tar.gz
tellico-145d30f0b8cbacc3599379e8717299734f3bb534.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/fetch/yahoofetcher.cpp')
-rw-r--r--src/fetch/yahoofetcher.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fetch/yahoofetcher.cpp b/src/fetch/yahoofetcher.cpp
index 2746f90..fe6d407 100644
--- a/src/fetch/yahoofetcher.cpp
+++ b/src/fetch/yahoofetcher.cpp
@@ -62,7 +62,7 @@ bool YahooFetcher::canFetch(int type) const {
return type == Data::Collection::Album;
}
-void YahooFetcher::readConfigHook(const KConfigGroup& config_) {
+void YahooFetcher::readConfigHook(const TDEConfigGroup& config_) {
Q_UNUSED(config_);
}
@@ -119,11 +119,11 @@ void YahooFetcher::doSearch() {
}
// myDebug() << "YahooFetcher::search() - url: " << u.url() << endl;
- m_job = KIO::get(u, false, false);
- connect(m_job, TQT_SIGNAL(data(KIO::Job*, const TQByteArray&)),
- TQT_SLOT(slotData(KIO::Job*, const TQByteArray&)));
- connect(m_job, TQT_SIGNAL(result(KIO::Job*)),
- TQT_SLOT(slotComplete(KIO::Job*)));
+ m_job = TDEIO::get(u, false, false);
+ connect(m_job, TQT_SIGNAL(data(TDEIO::Job*, const TQByteArray&)),
+ TQT_SLOT(slotData(TDEIO::Job*, const TQByteArray&)));
+ connect(m_job, TQT_SIGNAL(result(TDEIO::Job*)),
+ TQT_SLOT(slotComplete(TDEIO::Job*)));
}
void YahooFetcher::stop() {
@@ -139,12 +139,12 @@ void YahooFetcher::stop() {
emit signalDone(this);
}
-void YahooFetcher::slotData(KIO::Job*, const TQByteArray& data_) {
+void YahooFetcher::slotData(TDEIO::Job*, const TQByteArray& data_) {
TQDataStream stream(m_data, IO_WriteOnly | IO_Append);
stream.writeRawBytes(data_.data(), data_.size());
}
-void YahooFetcher::slotComplete(KIO::Job* job_) {
+void YahooFetcher::slotComplete(TDEIO::Job* job_) {
// myDebug() << "YahooFetcher::slotComplete()" << endl;
// since the fetch is done, don't worry about holding the job pointer
m_job = 0;