summaryrefslogtreecommitdiffstats
path: root/common/resource.cpp
diff options
context:
space:
mode:
authorDan Vrátil <dvratil@redhat.com>2015-05-15 16:22:03 +0200
committerDan Vrátil <dvratil@redhat.com>2015-05-15 16:22:31 +0200
commitb43c0cf97615957e097daef29ff8febc1ec884c8 (patch)
tree445479bf66df161e8554844a478d99d03ba43061 /common/resource.cpp
parent9270185becb48401bf3b2337d248763df0873107 (diff)
downloadsink-b43c0cf97615957e097daef29ff8febc1ec884c8.tar.gz
sink-b43c0cf97615957e097daef29ff8febc1ec884c8.zip
Adapt to KAsync namespace change
Diffstat (limited to 'common/resource.cpp')
-rw-r--r--common/resource.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/resource.cpp b/common/resource.cpp
index e158a40..bd69afd 100644
--- a/common/resource.cpp
+++ b/common/resource.cpp
@@ -53,16 +53,16 @@ void Resource::processCommand(int commandId, const QByteArray &data, uint size,
53 pipeline->null(); 53 pipeline->null();
54} 54}
55 55
56Async::Job<void> Resource::synchronizeWithSource(Pipeline *pipeline) 56KAsync::Job<void> Resource::synchronizeWithSource(Pipeline *pipeline)
57{ 57{
58 return Async::start<void>([pipeline](Async::Future<void> &f) { 58 return KAsync::start<void>([pipeline](KAsync::Future<void> &f) {
59 pipeline->null(); 59 pipeline->null();
60 }); 60 });
61} 61}
62 62
63Async::Job<void> Resource::processAllMessages() 63KAsync::Job<void> Resource::processAllMessages()
64{ 64{
65 return Async::null<void>(); 65 return KAsync::null<void>();
66} 66}
67 67
68class ResourceFactory::Private 68class ResourceFactory::Private