summaryrefslogtreecommitdiffstats
path: root/libktorrent/util/waitjob.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:12:44 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:12:44 -0600
commitd46a1fe34693137bbc38a0a79593af420ea0914b (patch)
tree038dbf461083bda9b7a6398908572591a80012d3 /libktorrent/util/waitjob.cpp
parent604bf3f969d880708ea9a1affce0b304c29e6ff5 (diff)
downloadktorrent-d46a1fe34693137bbc38a0a79593af420ea0914b.tar.gz
ktorrent-d46a1fe34693137bbc38a0a79593af420ea0914b.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'libktorrent/util/waitjob.cpp')
-rw-r--r--libktorrent/util/waitjob.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libktorrent/util/waitjob.cpp b/libktorrent/util/waitjob.cpp
index 9fec771..ed00f89 100644
--- a/libktorrent/util/waitjob.cpp
+++ b/libktorrent/util/waitjob.cpp
@@ -25,7 +25,7 @@
namespace bt
{
- WaitJob::WaitJob(Uint32 millis) : KIO::Job(false)
+ WaitJob::WaitJob(Uint32 millis) : TDEIO::Job(false)
{
connect(&timer,TQT_SIGNAL(timeout()),this,TQT_SLOT(timerDone()));
timer.start(millis,true);
@@ -70,14 +70,14 @@ namespace bt
void WaitJob::execute(WaitJob* job)
{
- KIO::NetAccess::synchronousRun(job,0);
+ TDEIO::NetAccess::synchronousRun(job,0);
}
void SynchronousWait(Uint32 millis)
{
Out() << "SynchronousWait" << endl;
WaitJob* j = new WaitJob(millis);
- KIO::NetAccess::synchronousRun(j,0);
+ TDEIO::NetAccess::synchronousRun(j,0);
}
}